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