C:
char c = '\u8730';
printf("%c\n", c); // Output: 蜰
JavaScript:
const char = '\u8730';
console.log(char); // Output: 蜰
Java:
char c = '\u8730';
System.out.println(c); // Output: 蜰
JSON:
{"text": "\u8730"} // Value: 蜰
Python:
char = '\u8730'
print(char) # Output: 蜰
Perl:
my $char = "\x{8730}";
print $char; # Output: 蜰
PHP:
$char = "\x{8730}";
echo $char; // Output: 蜰
Ruby:
char = "\u{8730}"
puts char # Output: 蜰
Rust:
let c = '\u{8730}';
println!("{}", c); // Output: 蜰
Go:
char := '\u8730'
fmt.Printf("%c\n", char) // Output: 蜰
CSS:
/* CSS content property */
.element::before {
content: "\008730"; /* 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%B0
MD5:
116aef640e8e48307aa7e9942d85c17e
SHA1:
06ceff07545f3c4b14bcd7076c28e3c1140786e8
Base64:
6Jyw