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