C:
char c = '\u8762';
printf("%c\n", c); // Output: 蝢
JavaScript:
const char = '\u8762';
console.log(char); // Output: 蝢
Java:
char c = '\u8762';
System.out.println(c); // Output: 蝢
JSON:
{"text": "\u8762"} // Value: 蝢
Python:
char = '\u8762'
print(char) # Output: 蝢
Perl:
my $char = "\x{8762}";
print $char; # Output: 蝢
PHP:
$char = "\x{8762}";
echo $char; // Output: 蝢
Ruby:
char = "\u{8762}"
puts char # Output: 蝢
Rust:
let c = '\u{8762}';
println!("{}", c); // Output: 蝢
Go:
char := '\u8762'
fmt.Printf("%c\n", char) // Output: 蝢
CSS:
/* CSS content property */
.element::before {
content: "\008762"; /* 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%A2
MD5:
c14daaa881083fbc59e5740fec603b90
SHA1:
4763ad21ee46763a04c869599e2cb8bfae36f8d8
Base64:
6J2i