C:
char c = '\u5384';
printf("%c\n", c); // Output: 厄
JavaScript:
const char = '\u5384';
console.log(char); // Output: 厄
Java:
char c = '\u5384';
System.out.println(c); // Output: 厄
JSON:
{"text": "\u5384"} // Value: 厄
Python:
char = '\u5384'
print(char) # Output: 厄
Perl:
my $char = "\x{5384}";
print $char; # Output: 厄
PHP:
$char = "\x{5384}";
echo $char; // Output: 厄
Ruby:
char = "\u{5384}"
puts char # Output: 厄
Rust:
let c = '\u{5384}';
println!("{}", c); // Output: 厄
Go:
char := '\u5384'
fmt.Printf("%c\n", char) // Output: 厄
CSS:
/* CSS content property */
.element::before {
content: "\005384"; /* 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=%E5%8E%84
MD5:
61d2ab64452be21835f103af9a780b53
SHA1:
768deefead510b93e6d04d1248d742595450b4d0
Base64:
5Y6E