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