C:
char c = '\u564A';
printf("%c\n", c); // Output: 噊
JavaScript:
const char = '\u564A';
console.log(char); // Output: 噊
Java:
char c = '\u564A';
System.out.println(c); // Output: 噊
JSON:
{"text": "\u564A"} // Value: 噊
Python:
char = '\u564A'
print(char) # Output: 噊
Perl:
my $char = "\x{564A}";
print $char; # Output: 噊
PHP:
$char = "\x{564A}";
echo $char; // Output: 噊
Ruby:
char = "\u{564A}"
puts char # Output: 噊
Rust:
let c = '\u{564A}';
println!("{}", c); // Output: 噊
Go:
char := '\u564A'
fmt.Printf("%c\n", char) // Output: 噊
CSS:
/* CSS content property */
.element::before {
content: "\00564A"; /* Display: 噊 */
}
HTML Decimal:
<p>HTML decimal: 噊</p> <!-- Display: 噊 -->
HTML Hexadecimal:
<p>HTML hex: 噊</p> <!-- Display: 噊 -->
URL Encoding:
// 噊 URL encoding
https://unicodefinder.com/search.php?query=%E5%99%8A
MD5:
c1cab46d1b59152fcd80a4d0f073ff6e
SHA1:
aabe6ee5192de8afc4a99840bd561334bd8b14a9
Base64:
5ZmK