C:
char c = '\u7398';
printf("%c\n", c); // Output: 玘
JavaScript:
const char = '\u7398';
console.log(char); // Output: 玘
Java:
char c = '\u7398';
System.out.println(c); // Output: 玘
JSON:
{"text": "\u7398"} // Value: 玘
Python:
char = '\u7398'
print(char) # Output: 玘
Perl:
my $char = "\x{7398}";
print $char; # Output: 玘
PHP:
$char = "\x{7398}";
echo $char; // Output: 玘
Ruby:
char = "\u{7398}"
puts char # Output: 玘
Rust:
let c = '\u{7398}';
println!("{}", c); // Output: 玘
Go:
char := '\u7398'
fmt.Printf("%c\n", char) // Output: 玘
CSS:
/* CSS content property */
.element::before {
content: "\007398"; /* 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%98
MD5:
d90f2f67924f09c08e34acb570509937
SHA1:
0a825686a0796aedd7cf3f1712563723046e24cb
Base64:
546Y