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