C:
char c = '\u53A3';
printf("%c\n", c); // Output: 厣
JavaScript:
const char = '\u53A3';
console.log(char); // Output: 厣
Java:
char c = '\u53A3';
System.out.println(c); // Output: 厣
JSON:
{"text": "\u53A3"} // Value: 厣
Python:
char = '\u53A3'
print(char) # Output: 厣
Perl:
my $char = "\x{53A3}";
print $char; # Output: 厣
PHP:
$char = "\x{53A3}";
echo $char; // Output: 厣
Ruby:
char = "\u{53A3}"
puts char # Output: 厣
Rust:
let c = '\u{53A3}';
println!("{}", c); // Output: 厣
Go:
char := '\u53A3'
fmt.Printf("%c\n", char) // Output: 厣
CSS:
/* CSS content property */
.element::before {
content: "\0053A3"; /* 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%A3
MD5:
fb9ee00ba4ab07e23b170e093ac3b4e1
SHA1:
cd43a7ff20d8a14f42bdc3ba9913f589fa40d2ae
Base64:
5Y6j