C:
char c = '\u9A0A';
printf("%c\n", c); // Output: 騊
JavaScript:
const char = '\u9A0A';
console.log(char); // Output: 騊
Java:
char c = '\u9A0A';
System.out.println(c); // Output: 騊
JSON:
{"text": "\u9A0A"} // Value: 騊
Python:
char = '\u9A0A'
print(char) # Output: 騊
Perl:
my $char = "\x{9A0A}";
print $char; # Output: 騊
PHP:
$char = "\x{9A0A}";
echo $char; // Output: 騊
Ruby:
char = "\u{9A0A}"
puts char # Output: 騊
Rust:
let c = '\u{9A0A}';
println!("{}", c); // Output: 騊
Go:
char := '\u9A0A'
fmt.Printf("%c\n", char) // Output: 騊
CSS:
/* CSS content property */
.element::before {
content: "\009A0A"; /* 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%8A
MD5:
713de52e9bd44af9ba31b17ac49cac51
SHA1:
86232ab7607fffcd5893d4c09c0670c64d72f1e2
Base64:
6aiK