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