C:
char c = '\u7341';
printf("%c\n", c); // Output: 獁
JavaScript:
const char = '\u7341';
console.log(char); // Output: 獁
Java:
char c = '\u7341';
System.out.println(c); // Output: 獁
JSON:
{"text": "\u7341"} // Value: 獁
Python:
char = '\u7341'
print(char) # Output: 獁
Perl:
my $char = "\x{7341}";
print $char; # Output: 獁
PHP:
$char = "\x{7341}";
echo $char; // Output: 獁
Ruby:
char = "\u{7341}"
puts char # Output: 獁
Rust:
let c = '\u{7341}';
println!("{}", c); // Output: 獁
Go:
char := '\u7341'
fmt.Printf("%c\n", char) // Output: 獁
CSS:
/* CSS content property */
.element::before {
content: "\007341"; /* 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%8D%81
MD5:
26d064ebc1c1e42de52f6b803486ae1b
SHA1:
03dccc29f13941c64fe431e4d70799c8117c0541
Base64:
542B