C:
char c = '\u9855';
printf("%c\n", c); // Output: 顕
JavaScript:
const char = '\u9855';
console.log(char); // Output: 顕
Java:
char c = '\u9855';
System.out.println(c); // Output: 顕
JSON:
{"text": "\u9855"} // Value: 顕
Python:
char = '\u9855'
print(char) # Output: 顕
Perl:
my $char = "\x{9855}";
print $char; # Output: 顕
PHP:
$char = "\x{9855}";
echo $char; // Output: 顕
Ruby:
char = "\u{9855}"
puts char # Output: 顕
Rust:
let c = '\u{9855}';
println!("{}", c); // Output: 顕
Go:
char := '\u9855'
fmt.Printf("%c\n", char) // Output: 顕
CSS:
/* CSS content property */
.element::before {
content: "\009855"; /* 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%95
MD5:
0e35d103075c95c79ce0f2df2f95d068
SHA1:
11a2e1771117901ae2646b087620119d25167c22
Base64:
6aGV