C:
char c = '\u9856';
printf("%c\n", c); // Output: 顖
JavaScript:
const char = '\u9856';
console.log(char); // Output: 顖
Java:
char c = '\u9856';
System.out.println(c); // Output: 顖
JSON:
{"text": "\u9856"} // Value: 顖
Python:
char = '\u9856'
print(char) # Output: 顖
Perl:
my $char = "\x{9856}";
print $char; # Output: 顖
PHP:
$char = "\x{9856}";
echo $char; // Output: 顖
Ruby:
char = "\u{9856}"
puts char # Output: 顖
Rust:
let c = '\u{9856}';
println!("{}", c); // Output: 顖
Go:
char := '\u9856'
fmt.Printf("%c\n", char) // Output: 顖
CSS:
/* CSS content property */
.element::before {
content: "\009856"; /* 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%96
MD5:
4a4c9830aab58cc1b303183e99bcd1cd
SHA1:
1bbcac201bba6788504e4ede961648d4f6e06432
Base64:
6aGW