C:
char c = '\u8344';
printf("%c\n", c); // Output: 荄
JavaScript:
const char = '\u8344';
console.log(char); // Output: 荄
Java:
char c = '\u8344';
System.out.println(c); // Output: 荄
JSON:
{"text": "\u8344"} // Value: 荄
Python:
char = '\u8344'
print(char) # Output: 荄
Perl:
my $char = "\x{8344}";
print $char; # Output: 荄
PHP:
$char = "\x{8344}";
echo $char; // Output: 荄
Ruby:
char = "\u{8344}"
puts char # Output: 荄
Rust:
let c = '\u{8344}';
println!("{}", c); // Output: 荄
Go:
char := '\u8344'
fmt.Printf("%c\n", char) // Output: 荄
CSS:
/* CSS content property */
.element::before {
content: "\008344"; /* 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%8D%84
MD5:
bdf98fb439019a6db0e8b23b03c3885f
SHA1:
30825a6a84c384db0ba41e5e2ebdbc21ae0f34e2
Base64:
6I2E