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