C:
char c = '\u8766';
printf("%c\n", c); // Output: 蝦
JavaScript:
const char = '\u8766';
console.log(char); // Output: 蝦
Java:
char c = '\u8766';
System.out.println(c); // Output: 蝦
JSON:
{"text": "\u8766"} // Value: 蝦
Python:
char = '\u8766'
print(char) # Output: 蝦
Perl:
my $char = "\x{8766}";
print $char; # Output: 蝦
PHP:
$char = "\x{8766}";
echo $char; // Output: 蝦
Ruby:
char = "\u{8766}"
puts char # Output: 蝦
Rust:
let c = '\u{8766}';
println!("{}", c); // Output: 蝦
Go:
char := '\u8766'
fmt.Printf("%c\n", char) // Output: 蝦
CSS:
/* CSS content property */
.element::before {
content: "\008766"; /* 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%A6
MD5:
ff993dada435ad8a28b2bedbe838753e
SHA1:
84fe45d04a016aa5a8fa86bb9280a412bbffccb0
Base64:
6J2m