C:
char c = '\u8742';
printf("%c\n", c); // Output: 蝂
JavaScript:
const char = '\u8742';
console.log(char); // Output: 蝂
Java:
char c = '\u8742';
System.out.println(c); // Output: 蝂
JSON:
{"text": "\u8742"} // Value: 蝂
Python:
char = '\u8742'
print(char) # Output: 蝂
Perl:
my $char = "\x{8742}";
print $char; # Output: 蝂
PHP:
$char = "\x{8742}";
echo $char; // Output: 蝂
Ruby:
char = "\u{8742}"
puts char # Output: 蝂
Rust:
let c = '\u{8742}';
println!("{}", c); // Output: 蝂
Go:
char := '\u8742'
fmt.Printf("%c\n", char) // Output: 蝂
CSS:
/* CSS content property */
.element::before {
content: "\008742"; /* 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%82
MD5:
2724bbcc97eee0f163744a67581f4a4c
SHA1:
19420e8af06166f668d6a1753a59c37fcee1ba9d
Base64:
6J2C