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