C:
char c = '\u7351';
printf("%c\n", c); // Output: 獑
JavaScript:
const char = '\u7351';
console.log(char); // Output: 獑
Java:
char c = '\u7351';
System.out.println(c); // Output: 獑
JSON:
{"text": "\u7351"} // Value: 獑
Python:
char = '\u7351'
print(char) # Output: 獑
Perl:
my $char = "\x{7351}";
print $char; # Output: 獑
PHP:
$char = "\x{7351}";
echo $char; // Output: 獑
Ruby:
char = "\u{7351}"
puts char # Output: 獑
Rust:
let c = '\u{7351}';
println!("{}", c); // Output: 獑
Go:
char := '\u7351'
fmt.Printf("%c\n", char) // Output: 獑
CSS:
/* CSS content property */
.element::before {
content: "\007351"; /* 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%91
MD5:
d71ef065b869366eaf8828def60ada1a
SHA1:
22119b5b90ddb23e4c16cc0572e2d3f13dd21f9c
Base64:
542R