C:
char c = '\u8770';
printf("%c\n", c); // Output: 蝰
JavaScript:
const char = '\u8770';
console.log(char); // Output: 蝰
Java:
char c = '\u8770';
System.out.println(c); // Output: 蝰
JSON:
{"text": "\u8770"} // Value: 蝰
Python:
char = '\u8770'
print(char) # Output: 蝰
Perl:
my $char = "\x{8770}";
print $char; # Output: 蝰
PHP:
$char = "\x{8770}";
echo $char; // Output: 蝰
Ruby:
char = "\u{8770}"
puts char # Output: 蝰
Rust:
let c = '\u{8770}';
println!("{}", c); // Output: 蝰
Go:
char := '\u8770'
fmt.Printf("%c\n", char) // Output: 蝰
CSS:
/* CSS content property */
.element::before {
content: "\008770"; /* 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=%E8%9D%B0
MD5:
75264f99a77221429590f73894224086
SHA1:
b7a229951488416c9f18a042d52ffd742f5cfd10
Base64:
6J2w