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