C:
char c = '\u55AB';
printf("%c\n", c); // Output: 喫
JavaScript:
const char = '\u55AB';
console.log(char); // Output: 喫
Java:
char c = '\u55AB';
System.out.println(c); // Output: 喫
JSON:
{"text": "\u55AB"} // Value: 喫
Python:
char = '\u55AB'
print(char) # Output: 喫
Perl:
my $char = "\x{55AB}";
print $char; # Output: 喫
PHP:
$char = "\x{55AB}";
echo $char; // Output: 喫
Ruby:
char = "\u{55AB}"
puts char # Output: 喫
Rust:
let c = '\u{55AB}';
println!("{}", c); // Output: 喫
Go:
char := '\u55AB'
fmt.Printf("%c\n", char) // Output: 喫
CSS:
/* CSS content property */
.element::before {
content: "\0055AB"; /* 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=%E5%96%AB
MD5:
289a7f8f8b6b4374a8c484faf1e61f94
SHA1:
7f13ea2aa88b81667ca4132104612f94c6391052
Base64:
5Zar