C:
char c = '\u7394';
printf("%c\n", c); // Output: 玔
JavaScript:
const char = '\u7394';
console.log(char); // Output: 玔
Java:
char c = '\u7394';
System.out.println(c); // Output: 玔
JSON:
{"text": "\u7394"} // Value: 玔
Python:
char = '\u7394'
print(char) # Output: 玔
Perl:
my $char = "\x{7394}";
print $char; # Output: 玔
PHP:
$char = "\x{7394}";
echo $char; // Output: 玔
Ruby:
char = "\u{7394}"
puts char # Output: 玔
Rust:
let c = '\u{7394}';
println!("{}", c); // Output: 玔
Go:
char := '\u7394'
fmt.Printf("%c\n", char) // Output: 玔
CSS:
/* CSS content property */
.element::before {
content: "\007394"; /* 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%94
MD5:
be8a668f5f66f02fd64c51915a36eeee
SHA1:
d9041576fc8f5a68450232dcbdfc8ec9a690d19e
Base64:
546U