C:
char c = '\u9D03';
printf("%c\n", c); // Output: 鴃
JavaScript:
const char = '\u9D03';
console.log(char); // Output: 鴃
Java:
char c = '\u9D03';
System.out.println(c); // Output: 鴃
JSON:
{"text": "\u9D03"} // Value: 鴃
Python:
char = '\u9D03'
print(char) # Output: 鴃
Perl:
my $char = "\x{9D03}";
print $char; # Output: 鴃
PHP:
$char = "\x{9D03}";
echo $char; // Output: 鴃
Ruby:
char = "\u{9D03}"
puts char # Output: 鴃
Rust:
let c = '\u{9D03}';
println!("{}", c); // Output: 鴃
Go:
char := '\u9D03'
fmt.Printf("%c\n", char) // Output: 鴃
CSS:
/* CSS content property */
.element::before {
content: "\009D03"; /* 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%B4%83
MD5:
f4c6e96af0c767f30c0dd81892513bd2
SHA1:
91c1136b4b01186f1ed630bc0651d24e87e4e3be
Base64:
6bSD