How to show emoji in angular/ionic app
问题 In my mobile app using angular5/ionic3 app I want to show emoji icon. So I used something like <span>😁</span> But in rendering it will show it as empty square. I already have <meta charset="UTF-8"> in my index.html and html file is also saved as utf-8. I thought it could be related to sanitizing, so I created below pipe @Pipe({ name: 'safeHtml', }) export class SafeHtmlPipe implements PipeTransform { constructor(private domSanitizer: DomSanitizer) { } transform(html) { return this