C:
char c = '\u8698';
printf("%c\n", c); // Output: 蚘
JavaScript:
const char = '\u8698';
console.log(char); // Output: 蚘
Java:
char c = '\u8698';
System.out.println(c); // Output: 蚘
JSON:
{"text": "\u8698"} // Value: 蚘
Python:
char = '\u8698'
print(char) # Output: 蚘
Perl:
my $char = "\x{8698}";
print $char; # Output: 蚘
PHP:
$char = "\x{8698}";
echo $char; // Output: 蚘
Ruby:
char = "\u{8698}"
puts char # Output: 蚘
Rust:
let c = '\u{8698}';
println!("{}", c); // Output: 蚘
Go:
char := '\u8698'
fmt.Printf("%c\n", char) // Output: 蚘
CSS:
/* CSS content property */
.element::before {
content: "\008698"; /* 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%98
MD5:
f4fc639b6c1eb780f4c020ea243a31c4
SHA1:
edba4ec5569a7bb4528ebcb52e38de25b752d263
Base64:
6JqY