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