C:
char c = '\u8807';
printf("%c\n", c); // Output: 蠇
JavaScript:
const char = '\u8807';
console.log(char); // Output: 蠇
Java:
char c = '\u8807';
System.out.println(c); // Output: 蠇
JSON:
{"text": "\u8807"} // Value: 蠇
Python:
char = '\u8807'
print(char) # Output: 蠇
Perl:
my $char = "\x{8807}";
print $char; # Output: 蠇
PHP:
$char = "\x{8807}";
echo $char; // Output: 蠇
Ruby:
char = "\u{8807}"
puts char # Output: 蠇
Rust:
let c = '\u{8807}';
println!("{}", c); // Output: 蠇
Go:
char := '\u8807'
fmt.Printf("%c\n", char) // Output: 蠇
CSS:
/* CSS content property */
.element::before {
content: "\008807"; /* 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%87
MD5:
eb55e07d5899d643549064bebbb57028
SHA1:
0bd9019b89facde178d04a240143d89b6c343266
Base64:
6KCH