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