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