C:
char c = '\u9873';
printf("%c\n", c); // Output: 顳
JavaScript:
const char = '\u9873';
console.log(char); // Output: 顳
Java:
char c = '\u9873';
System.out.println(c); // Output: 顳
JSON:
{"text": "\u9873"} // Value: 顳
Python:
char = '\u9873'
print(char) # Output: 顳
Perl:
my $char = "\x{9873}";
print $char; # Output: 顳
PHP:
$char = "\x{9873}";
echo $char; // Output: 顳
Ruby:
char = "\u{9873}"
puts char # Output: 顳
Rust:
let c = '\u{9873}';
println!("{}", c); // Output: 顳
Go:
char := '\u9873'
fmt.Printf("%c\n", char) // Output: 顳
CSS:
/* CSS content property */
.element::before {
content: "\009873"; /* 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%A1%B3
MD5:
2c3af6cd4fc3bf643e18c2b826525bc9
SHA1:
4431a368dbd65f16e2726688e5d0965ecec33de8
Base64:
6aGz