C:
char c = '\u8826';
printf("%c\n", c); // Output: 蠦
JavaScript:
const char = '\u8826';
console.log(char); // Output: 蠦
Java:
char c = '\u8826';
System.out.println(c); // Output: 蠦
JSON:
{"text": "\u8826"} // Value: 蠦
Python:
char = '\u8826'
print(char) # Output: 蠦
Perl:
my $char = "\x{8826}";
print $char; # Output: 蠦
PHP:
$char = "\x{8826}";
echo $char; // Output: 蠦
Ruby:
char = "\u{8826}"
puts char # Output: 蠦
Rust:
let c = '\u{8826}';
println!("{}", c); // Output: 蠦
Go:
char := '\u8826'
fmt.Printf("%c\n", char) // Output: 蠦
CSS:
/* CSS content property */
.element::before {
content: "\008826"; /* 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%A0%A6
MD5:
bfc07b6d44263431a8172957f4ad8182
SHA1:
a901688d34f49a589e07bd2bb5d04bae93636ac6
Base64:
6KCm