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