C:
char c = '\u8699';
printf("%c\n", c); // Output: 蚙
JavaScript:
const char = '\u8699';
console.log(char); // Output: 蚙
Java:
char c = '\u8699';
System.out.println(c); // Output: 蚙
JSON:
{"text": "\u8699"} // Value: 蚙
Python:
char = '\u8699'
print(char) # Output: 蚙
Perl:
my $char = "\x{8699}";
print $char; # Output: 蚙
PHP:
$char = "\x{8699}";
echo $char; // Output: 蚙
Ruby:
char = "\u{8699}"
puts char # Output: 蚙
Rust:
let c = '\u{8699}';
println!("{}", c); // Output: 蚙
Go:
char := '\u8699'
fmt.Printf("%c\n", char) // Output: 蚙
CSS:
/* CSS content property */
.element::before {
content: "\008699"; /* 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%9A%99
MD5:
ab9c5339ca0db75aea4d51126bcef6be
SHA1:
fbbfeef4ca89c503d28b37d40e7b22de505a45bd
Base64:
6JqZ