C:
char c = '\u5B19';
printf("%c\n", c); // Output: 嬙
JavaScript:
const char = '\u5B19';
console.log(char); // Output: 嬙
Java:
char c = '\u5B19';
System.out.println(c); // Output: 嬙
JSON:
{"text": "\u5B19"} // Value: 嬙
Python:
char = '\u5B19'
print(char) # Output: 嬙
Perl:
my $char = "\x{5B19}";
print $char; # Output: 嬙
PHP:
$char = "\x{5B19}";
echo $char; // Output: 嬙
Ruby:
char = "\u{5B19}"
puts char # Output: 嬙
Rust:
let c = '\u{5B19}';
println!("{}", c); // Output: 嬙
Go:
char := '\u5B19'
fmt.Printf("%c\n", char) // Output: 嬙
CSS:
/* CSS content property */
.element::before {
content: "\005B19"; /* 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%AC%99
MD5:
79c5fa12a6419f654918e62f2c722a80
SHA1:
812371d4cbb4b73b8723f6b7dd7ca17bc7e892cf
Base64:
5ayZ