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