C:
char c = '\u99A4';
printf("%c\n", c); // Output: 馤
JavaScript:
const char = '\u99A4';
console.log(char); // Output: 馤
Java:
char c = '\u99A4';
System.out.println(c); // Output: 馤
JSON:
{"text": "\u99A4"} // Value: 馤
Python:
char = '\u99A4'
print(char) # Output: 馤
Perl:
my $char = "\x{99A4}";
print $char; # Output: 馤
PHP:
$char = "\x{99A4}";
echo $char; // Output: 馤
Ruby:
char = "\u{99A4}"
puts char # Output: 馤
Rust:
let c = '\u{99A4}';
println!("{}", c); // Output: 馤
Go:
char := '\u99A4'
fmt.Printf("%c\n", char) // Output: 馤
CSS:
/* CSS content property */
.element::before {
content: "\0099A4"; /* 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=%E9%A6%A4
MD5:
d062737b22974434cc5793c4553517cc
SHA1:
f31df88a7cf46fc0e46d5ae912e60b9a4eb9e6ac
Base64:
6aak