C:
char c = '\u99D4';
printf("%c\n", c); // Output: 駔
JavaScript:
const char = '\u99D4';
console.log(char); // Output: 駔
Java:
char c = '\u99D4';
System.out.println(c); // Output: 駔
JSON:
{"text": "\u99D4"} // Value: 駔
Python:
char = '\u99D4'
print(char) # Output: 駔
Perl:
my $char = "\x{99D4}";
print $char; # Output: 駔
PHP:
$char = "\x{99D4}";
echo $char; // Output: 駔
Ruby:
char = "\u{99D4}"
puts char # Output: 駔
Rust:
let c = '\u{99D4}';
println!("{}", c); // Output: 駔
Go:
char := '\u99D4'
fmt.Printf("%c\n", char) // Output: 駔
CSS:
/* CSS content property */
.element::before {
content: "\0099D4"; /* 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%A7%94
MD5:
e17c052028ca9675ce982ef846d5cf78
SHA1:
56fee56970e77bb29d351900ced4f14c809447f3
Base64:
6aeU