utf-8elf

Can ELF symbols be represented in UTF8?


May a symbol in the ELF table use UTF8 characters or is it restricted to ASCII?

Note: It is not a problem that I am trying to solve, it is more something I am wondering.


Solution

  • ELF string tables use NUL-terminated strings, so you could possibly store UTF-8 encoded symbol names inside them.

    That said, the tools that use such symbols would need to be Unicode-aware to work correctly. For example:

    ... etc.