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