C:
char c = '\u8768';
printf("%c\n", c); // Output: 蝨
JavaScript:
const char = '\u8768';
console.log(char); // Output: 蝨
Java:
char c = '\u8768';
System.out.println(c); // Output: 蝨
JSON:
{"text": "\u8768"} // Value: 蝨
Python:
char = '\u8768'
print(char) # Output: 蝨
Perl:
my $char = "\x{8768}";
print $char; # Output: 蝨
PHP:
$char = "\x{8768}";
echo $char; // Output: 蝨
Ruby:
char = "\u{8768}"
puts char # Output: 蝨
Rust:
let c = '\u{8768}';
println!("{}", c); // Output: 蝨
Go:
char := '\u8768'
fmt.Printf("%c\n", char) // Output: 蝨
CSS:
/* CSS content property */
.element::before {
content: "\008768"; /* 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%A8
MD5:
169678ec79997089b776134f4d5fb458
SHA1:
b2f5d06b36a930f59c1123581d9e7a0845ee0f23
Base64:
6J2o