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