C:
char c = '\u9866';
printf("%c\n", c); // Output: 顦
JavaScript:
const char = '\u9866';
console.log(char); // Output: 顦
Java:
char c = '\u9866';
System.out.println(c); // Output: 顦
JSON:
{"text": "\u9866"} // Value: 顦
Python:
char = '\u9866'
print(char) # Output: 顦
Perl:
my $char = "\x{9866}";
print $char; # Output: 顦
PHP:
$char = "\x{9866}";
echo $char; // Output: 顦
Ruby:
char = "\u{9866}"
puts char # Output: 顦
Rust:
let c = '\u{9866}';
println!("{}", c); // Output: 顦
Go:
char := '\u9866'
fmt.Printf("%c\n", char) // Output: 顦
CSS:
/* CSS content property */
.element::before {
content: "\009866"; /* 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%A6
MD5:
7fe294d4d8091d0329bb24c53acf645c
SHA1:
76ab20e9639ffdd9adbb4fc24a2923a827fb0faa
Base64:
6aGm