C:
char c = '\u9955';
printf("%c\n", c); // Output: 饕
JavaScript:
const char = '\u9955';
console.log(char); // Output: 饕
Java:
char c = '\u9955';
System.out.println(c); // Output: 饕
JSON:
{"text": "\u9955"} // Value: 饕
Python:
char = '\u9955'
print(char) # Output: 饕
Perl:
my $char = "\x{9955}";
print $char; # Output: 饕
PHP:
$char = "\x{9955}";
echo $char; // Output: 饕
Ruby:
char = "\u{9955}"
puts char # Output: 饕
Rust:
let c = '\u{9955}';
println!("{}", c); // Output: 饕
Go:
char := '\u9955'
fmt.Printf("%c\n", char) // Output: 饕
CSS:
/* CSS content property */
.element::before {
content: "\009955"; /* 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%A5%95
MD5:
acf718577cbf65991472ad3258e35a75
SHA1:
1580ed947efac7cc81796b959f11016243a1d9a5
Base64:
6aWV