C:
char c = '\u7345';
printf("%c\n", c); // Output: 獅
JavaScript:
const char = '\u7345';
console.log(char); // Output: 獅
Java:
char c = '\u7345';
System.out.println(c); // Output: 獅
JSON:
{"text": "\u7345"} // Value: 獅
Python:
char = '\u7345'
print(char) # Output: 獅
Perl:
my $char = "\x{7345}";
print $char; # Output: 獅
PHP:
$char = "\x{7345}";
echo $char; // Output: 獅
Ruby:
char = "\u{7345}"
puts char # Output: 獅
Rust:
let c = '\u{7345}';
println!("{}", c); // Output: 獅
Go:
char := '\u7345'
fmt.Printf("%c\n", char) // Output: 獅
CSS:
/* CSS content property */
.element::before {
content: "\007345"; /* 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%85
MD5:
0fa9a80b30877f9e9b1d809983955089
SHA1:
9c79ab272052fe24f24dd0641e303945abe61947
Base64:
542F