C:
char c = '\u7381';
printf("%c\n", c); // Output: 玁
JavaScript:
const char = '\u7381';
console.log(char); // Output: 玁
Java:
char c = '\u7381';
System.out.println(c); // Output: 玁
JSON:
{"text": "\u7381"} // Value: 玁
Python:
char = '\u7381'
print(char) # Output: 玁
Perl:
my $char = "\x{7381}";
print $char; # Output: 玁
PHP:
$char = "\x{7381}";
echo $char; // Output: 玁
Ruby:
char = "\u{7381}"
puts char # Output: 玁
Rust:
let c = '\u{7381}';
println!("{}", c); // Output: 玁
Go:
char := '\u7381'
fmt.Printf("%c\n", char) // Output: 玁
CSS:
/* CSS content property */
.element::before {
content: "\007381"; /* 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%81
MD5:
e9eb5ea00159e4a4b1cde88021d79a5f
SHA1:
abb8dd0f0903f152865c87352d9d43e64453dcaa
Base64:
546B