C:
char c = '\u7376';
printf("%c\n", c); // Output: 獶
JavaScript:
const char = '\u7376';
console.log(char); // Output: 獶
Java:
char c = '\u7376';
System.out.println(c); // Output: 獶
JSON:
{"text": "\u7376"} // Value: 獶
Python:
char = '\u7376'
print(char) # Output: 獶
Perl:
my $char = "\x{7376}";
print $char; # Output: 獶
PHP:
$char = "\x{7376}";
echo $char; // Output: 獶
Ruby:
char = "\u{7376}"
puts char # Output: 獶
Rust:
let c = '\u{7376}';
println!("{}", c); // Output: 獶
Go:
char := '\u7376'
fmt.Printf("%c\n", char) // Output: 獶
CSS:
/* CSS content property */
.element::before {
content: "\007376"; /* 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%B6
MD5:
7abeaf88617380cc460036f4ea560803
SHA1:
1d7584eb4120f9a72091654249a906239a055371
Base64:
5422