C:
char c = '\u7397';
printf("%c\n", c); // Output: 玗
JavaScript:
const char = '\u7397';
console.log(char); // Output: 玗
Java:
char c = '\u7397';
System.out.println(c); // Output: 玗
JSON:
{"text": "\u7397"} // Value: 玗
Python:
char = '\u7397'
print(char) # Output: 玗
Perl:
my $char = "\x{7397}";
print $char; # Output: 玗
PHP:
$char = "\x{7397}";
echo $char; // Output: 玗
Ruby:
char = "\u{7397}"
puts char # Output: 玗
Rust:
let c = '\u{7397}';
println!("{}", c); // Output: 玗
Go:
char := '\u7397'
fmt.Printf("%c\n", char) // Output: 玗
CSS:
/* CSS content property */
.element::before {
content: "\007397"; /* 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%97
MD5:
528aa771901f1744363bd9580518b7d7
SHA1:
530fac08c73cc05e9c30d4c23b6f30483c86ae83
Base64:
546X