C:
char c = '\u8720';
printf("%c\n", c); // Output: 蜠
JavaScript:
const char = '\u8720';
console.log(char); // Output: 蜠
Java:
char c = '\u8720';
System.out.println(c); // Output: 蜠
JSON:
{"text": "\u8720"} // Value: 蜠
Python:
char = '\u8720'
print(char) # Output: 蜠
Perl:
my $char = "\x{8720}";
print $char; # Output: 蜠
PHP:
$char = "\x{8720}";
echo $char; // Output: 蜠
Ruby:
char = "\u{8720}"
puts char # Output: 蜠
Rust:
let c = '\u{8720}';
println!("{}", c); // Output: 蜠
Go:
char := '\u8720'
fmt.Printf("%c\n", char) // Output: 蜠
CSS:
/* CSS content property */
.element::before {
content: "\008720"; /* 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%9C%A0
MD5:
3a0bf66b341a3656bae1cd308d55e0b8
SHA1:
7606f7a2d529f96119b5409ff4023f907554dabb
Base64:
6Jyg