C:
char c = '\u5383';
printf("%c\n", c); // Output: 厃
JavaScript:
const char = '\u5383';
console.log(char); // Output: 厃
Java:
char c = '\u5383';
System.out.println(c); // Output: 厃
JSON:
{"text": "\u5383"} // Value: 厃
Python:
char = '\u5383'
print(char) # Output: 厃
Perl:
my $char = "\x{5383}";
print $char; # Output: 厃
PHP:
$char = "\x{5383}";
echo $char; // Output: 厃
Ruby:
char = "\u{5383}"
puts char # Output: 厃
Rust:
let c = '\u{5383}';
println!("{}", c); // Output: 厃
Go:
char := '\u5383'
fmt.Printf("%c\n", char) // Output: 厃
CSS:
/* CSS content property */
.element::before {
content: "\005383"; /* 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%83
MD5:
2dfb27e4268f5207c2a318e7fbe3a76f
SHA1:
8e4e63037e3585188d239ccaafde3e7612603b45
Base64:
5Y6D