C:
char c = '\u8843';
printf("%c\n", c); // Output: 衃
JavaScript:
const char = '\u8843';
console.log(char); // Output: 衃
Java:
char c = '\u8843';
System.out.println(c); // Output: 衃
JSON:
{"text": "\u8843"} // Value: 衃
Python:
char = '\u8843'
print(char) # Output: 衃
Perl:
my $char = "\x{8843}";
print $char; # Output: 衃
PHP:
$char = "\x{8843}";
echo $char; // Output: 衃
Ruby:
char = "\u{8843}"
puts char # Output: 衃
Rust:
let c = '\u{8843}';
println!("{}", c); // Output: 衃
Go:
char := '\u8843'
fmt.Printf("%c\n", char) // Output: 衃
CSS:
/* CSS content property */
.element::before {
content: "\008843"; /* 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%A1%83
MD5:
882fd9e592d1363ec5fc05025701e9ab
SHA1:
d4515c69a1312007c0b42983d74cdbb4e2a39f9b
Base64:
6KGD