C:
char c = '\u9892';
printf("%c\n", c); // Output: 颒
JavaScript:
const char = '\u9892';
console.log(char); // Output: 颒
Java:
char c = '\u9892';
System.out.println(c); // Output: 颒
JSON:
{"text": "\u9892"} // Value: 颒
Python:
char = '\u9892'
print(char) # Output: 颒
Perl:
my $char = "\x{9892}";
print $char; # Output: 颒
PHP:
$char = "\x{9892}";
echo $char; // Output: 颒
Ruby:
char = "\u{9892}"
puts char # Output: 颒
Rust:
let c = '\u{9892}';
println!("{}", c); // Output: 颒
Go:
char := '\u9892'
fmt.Printf("%c\n", char) // Output: 颒
CSS:
/* CSS content property */
.element::before {
content: "\009892"; /* 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%92
MD5:
c21978db8e88f146ae9a261f3b30c3a2
SHA1:
a394281dadd59935f59fd181ef95e2660df91f81
Base64:
6aKS