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