C:
char c = '\u7708';
printf("%c\n", c); // Output: 眈
JavaScript:
const char = '\u7708';
console.log(char); // Output: 眈
Java:
char c = '\u7708';
System.out.println(c); // Output: 眈
JSON:
{"text": "\u7708"} // Value: 眈
Python:
char = '\u7708'
print(char) # Output: 眈
Perl:
my $char = "\x{7708}";
print $char; # Output: 眈
PHP:
$char = "\x{7708}";
echo $char; // Output: 眈
Ruby:
char = "\u{7708}"
puts char # Output: 眈
Rust:
let c = '\u{7708}';
println!("{}", c); // Output: 眈
Go:
char := '\u7708'
fmt.Printf("%c\n", char) // Output: 眈
CSS:
/* CSS content property */
.element::before {
content: "\007708"; /* 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%9C%88
MD5:
38b7122597307bc47d4a7718cfe29701
SHA1:
96821c28b60feff9e70b2a2b41d9451dbfae0e05
Base64:
55yI