C:
char c = '\u7353';
printf("%c\n", c); // Output: 獓
JavaScript:
const char = '\u7353';
console.log(char); // Output: 獓
Java:
char c = '\u7353';
System.out.println(c); // Output: 獓
JSON:
{"text": "\u7353"} // Value: 獓
Python:
char = '\u7353'
print(char) # Output: 獓
Perl:
my $char = "\x{7353}";
print $char; # Output: 獓
PHP:
$char = "\x{7353}";
echo $char; // Output: 獓
Ruby:
char = "\u{7353}"
puts char # Output: 獓
Rust:
let c = '\u{7353}';
println!("{}", c); // Output: 獓
Go:
char := '\u7353'
fmt.Printf("%c\n", char) // Output: 獓
CSS:
/* CSS content property */
.element::before {
content: "\007353"; /* 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%93
MD5:
3389a057d957475fd61f39f2c2078b87
SHA1:
0e24ef7dbf9be524f46a130e16973374516d83e2
Base64:
542T