C:
char c = '\u9A4F';
printf("%c\n", c); // Output: 驏
JavaScript:
const char = '\u9A4F';
console.log(char); // Output: 驏
Java:
char c = '\u9A4F';
System.out.println(c); // Output: 驏
JSON:
{"text": "\u9A4F"} // Value: 驏
Python:
char = '\u9A4F'
print(char) # Output: 驏
Perl:
my $char = "\x{9A4F}";
print $char; # Output: 驏
PHP:
$char = "\x{9A4F}";
echo $char; // Output: 驏
Ruby:
char = "\u{9A4F}"
puts char # Output: 驏
Rust:
let c = '\u{9A4F}';
println!("{}", c); // Output: 驏
Go:
char := '\u9A4F'
fmt.Printf("%c\n", char) // Output: 驏
CSS:
/* CSS content property */
.element::before {
content: "\009A4F"; /* 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%8F
MD5:
f8126d5b485cce051fe85ea521083e45
SHA1:
0d21b4b99854f4d4710474c414ada3f76eec247e
Base64:
6amP