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