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