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