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