C:
char c = '\u5399';
printf("%c\n", c); // Output: 厙
JavaScript:
const char = '\u5399';
console.log(char); // Output: 厙
Java:
char c = '\u5399';
System.out.println(c); // Output: 厙
JSON:
{"text": "\u5399"} // Value: 厙
Python:
char = '\u5399'
print(char) # Output: 厙
Perl:
my $char = "\x{5399}";
print $char; # Output: 厙
PHP:
$char = "\x{5399}";
echo $char; // Output: 厙
Ruby:
char = "\u{5399}"
puts char # Output: 厙
Rust:
let c = '\u{5399}';
println!("{}", c); // Output: 厙
Go:
char := '\u5399'
fmt.Printf("%c\n", char) // Output: 厙
CSS:
/* CSS content property */
.element::before {
content: "\005399"; /* 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%99
MD5:
b4427f7b69d01a6e60f0e4e26d842e63
SHA1:
79704e3c2568f2a129d67db0fe2a7d851f21016b
Base64:
5Y6Z