C:
char c = '\u7383';
printf("%c\n", c); // Output: 玃
JavaScript:
const char = '\u7383';
console.log(char); // Output: 玃
Java:
char c = '\u7383';
System.out.println(c); // Output: 玃
JSON:
{"text": "\u7383"} // Value: 玃
Python:
char = '\u7383'
print(char) # Output: 玃
Perl:
my $char = "\x{7383}";
print $char; # Output: 玃
PHP:
$char = "\x{7383}";
echo $char; // Output: 玃
Ruby:
char = "\u{7383}"
puts char # Output: 玃
Rust:
let c = '\u{7383}';
println!("{}", c); // Output: 玃
Go:
char := '\u7383'
fmt.Printf("%c\n", char) // Output: 玃
CSS:
/* CSS content property */
.element::before {
content: "\007383"; /* 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%83
MD5:
52765bd2d48e8dd1acdc2b41fa4f534f
SHA1:
97c2d16ce7ff6a8fcb4eefc89dd73fb2ae8ed1bd
Base64:
546D