C:
char c = '\u9880';
printf("%c\n", c); // Output: 颀
JavaScript:
const char = '\u9880';
console.log(char); // Output: 颀
Java:
char c = '\u9880';
System.out.println(c); // Output: 颀
JSON:
{"text": "\u9880"} // Value: 颀
Python:
char = '\u9880'
print(char) # Output: 颀
Perl:
my $char = "\x{9880}";
print $char; # Output: 颀
PHP:
$char = "\x{9880}";
echo $char; // Output: 颀
Ruby:
char = "\u{9880}"
puts char # Output: 颀
Rust:
let c = '\u{9880}';
println!("{}", c); // Output: 颀
Go:
char := '\u9880'
fmt.Printf("%c\n", char) // Output: 颀
CSS:
/* CSS content property */
.element::before {
content: "\009880"; /* 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%80
MD5:
4db473bcfe1db8a34fb6b1c524f09c04
SHA1:
6422a9e725c02e1e8e5f07ba1c2fe6d7185bb23f
Base64:
6aKA