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