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