C:
char c = '\u8345';
printf("%c\n", c); // Output: 荅
JavaScript:
const char = '\u8345';
console.log(char); // Output: 荅
Java:
char c = '\u8345';
System.out.println(c); // Output: 荅
JSON:
{"text": "\u8345"} // Value: 荅
Python:
char = '\u8345'
print(char) # Output: 荅
Perl:
my $char = "\x{8345}";
print $char; # Output: 荅
PHP:
$char = "\x{8345}";
echo $char; // Output: 荅
Ruby:
char = "\u{8345}"
puts char # Output: 荅
Rust:
let c = '\u{8345}';
println!("{}", c); // Output: 荅
Go:
char := '\u8345'
fmt.Printf("%c\n", char) // Output: 荅
CSS:
/* CSS content property */
.element::before {
content: "\008345"; /* 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%85
MD5:
ed3919d080f231b2c40286d89219a254
SHA1:
416bb26bb41e44f864adf4ab6416885c597b2d7a
Base64:
6I2F