C:
char c = '\u7389';
printf("%c\n", c); // Output: 玉
JavaScript:
const char = '\u7389';
console.log(char); // Output: 玉
Java:
char c = '\u7389';
System.out.println(c); // Output: 玉
JSON:
{"text": "\u7389"} // Value: 玉
Python:
char = '\u7389'
print(char) # Output: 玉
Perl:
my $char = "\x{7389}";
print $char; # Output: 玉
PHP:
$char = "\x{7389}";
echo $char; // Output: 玉
Ruby:
char = "\u{7389}"
puts char # Output: 玉
Rust:
let c = '\u{7389}';
println!("{}", c); // Output: 玉
Go:
char := '\u7389'
fmt.Printf("%c\n", char) // Output: 玉
CSS:
/* CSS content property */
.element::before {
content: "\007389"; /* 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%89
MD5:
b4f965683ff747825ddd1824b6e4998c
SHA1:
2081bbe07115ade34e649a8abff3e984f2108acc
Base64:
546J