C:
char c = '\u7392';
printf("%c\n", c); // Output: 玒
JavaScript:
const char = '\u7392';
console.log(char); // Output: 玒
Java:
char c = '\u7392';
System.out.println(c); // Output: 玒
JSON:
{"text": "\u7392"} // Value: 玒
Python:
char = '\u7392'
print(char) # Output: 玒
Perl:
my $char = "\x{7392}";
print $char; # Output: 玒
PHP:
$char = "\x{7392}";
echo $char; // Output: 玒
Ruby:
char = "\u{7392}"
puts char # Output: 玒
Rust:
let c = '\u{7392}';
println!("{}", c); // Output: 玒
Go:
char := '\u7392'
fmt.Printf("%c\n", char) // Output: 玒
CSS:
/* CSS content property */
.element::before {
content: "\007392"; /* 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%92
MD5:
a5844c237738f82e213dc9ff4ffbd64f
SHA1:
3edd52fb7acad92c833109cc063a6e24325e1b7d
Base64:
546S