Search code examples
javascriptreact-nativeemojihtml-entitiesutf-16

How to convert HTML Entity (Hexadecimal) to UTF-16 (two pair hex)


How can I convert html entity 😍 to \uD83D\uDE0D in JavaScript? (react native) (emoji 😍)


Solution

  • This he library can decode

    import { decode } from 'he';
    
    decode('😍') // outputs 😍