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