C:
char c = '\u8773';
printf("%c\n", c); // Output: 蝳
JavaScript:
const char = '\u8773';
console.log(char); // Output: 蝳
Java:
char c = '\u8773';
System.out.println(c); // Output: 蝳
JSON:
{"text": "\u8773"} // Value: 蝳
Python:
char = '\u8773'
print(char) # Output: 蝳
Perl:
my $char = "\x{8773}";
print $char; # Output: 蝳
PHP:
$char = "\x{8773}";
echo $char; // Output: 蝳
Ruby:
char = "\u{8773}"
puts char # Output: 蝳
Rust:
let c = '\u{8773}';
println!("{}", c); // Output: 蝳
Go:
char := '\u8773'
fmt.Printf("%c\n", char) // Output: 蝳
CSS:
/* CSS content property */
.element::before {
content: "\008773"; /* 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%B3
MD5:
6802f98d465ffa84090193f4ab196e1e
SHA1:
faa6c41a751c1338420b31c508ffec27a14f2d16
Base64:
6J2z