C:
char c = '\u738A';
printf("%c\n", c); // Output: 玊
JavaScript:
const char = '\u738A';
console.log(char); // Output: 玊
Java:
char c = '\u738A';
System.out.println(c); // Output: 玊
JSON:
{"text": "\u738A"} // Value: 玊
Python:
char = '\u738A'
print(char) # Output: 玊
Perl:
my $char = "\x{738A}";
print $char; # Output: 玊
PHP:
$char = "\x{738A}";
echo $char; // Output: 玊
Ruby:
char = "\u{738A}"
puts char # Output: 玊
Rust:
let c = '\u{738A}';
println!("{}", c); // Output: 玊
Go:
char := '\u738A'
fmt.Printf("%c\n", char) // Output: 玊
CSS:
/* CSS content property */
.element::before {
content: "\00738A"; /* 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=%E7%8E%8A
MD5:
48cb2d9f3155ccc80839a6524a22c523
SHA1:
5afa9c4b194e64e9b02964aead89f785bd2f8225
Base64:
546K