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