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