C:
char c = '\u8748';
printf("%c\n", c); // Output: 蝈
JavaScript:
const char = '\u8748';
console.log(char); // Output: 蝈
Java:
char c = '\u8748';
System.out.println(c); // Output: 蝈
JSON:
{"text": "\u8748"} // Value: 蝈
Python:
char = '\u8748'
print(char) # Output: 蝈
Perl:
my $char = "\x{8748}";
print $char; # Output: 蝈
PHP:
$char = "\x{8748}";
echo $char; // Output: 蝈
Ruby:
char = "\u{8748}"
puts char # Output: 蝈
Rust:
let c = '\u{8748}';
println!("{}", c); // Output: 蝈
Go:
char := '\u8748'
fmt.Printf("%c\n", char) // Output: 蝈
CSS:
/* CSS content property */
.element::before {
content: "\008748"; /* 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%88
MD5:
78bcc972a51ec33fb89c27c787e89368
SHA1:
ff3242378550456b3d2de089fc5175643c3d70c1
Base64:
6J2I