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