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