C:
char c = '\u7399';
printf("%c\n", c); // Output: 玙
JavaScript:
const char = '\u7399';
console.log(char); // Output: 玙
Java:
char c = '\u7399';
System.out.println(c); // Output: 玙
JSON:
{"text": "\u7399"} // Value: 玙
Python:
char = '\u7399'
print(char) # Output: 玙
Perl:
my $char = "\x{7399}";
print $char; # Output: 玙
PHP:
$char = "\x{7399}";
echo $char; // Output: 玙
Ruby:
char = "\u{7399}"
puts char # Output: 玙
Rust:
let c = '\u{7399}';
println!("{}", c); // Output: 玙
Go:
char := '\u7399'
fmt.Printf("%c\n", char) // Output: 玙
CSS:
/* CSS content property */
.element::before {
content: "\007399"; /* 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%99
MD5:
619cbd2c083b17cf634181567e910108
SHA1:
fe43ab92837c97ad3d4df87c73871b8d856fadf2
Base64:
546Z