C:
char c = '\u5391';
printf("%c\n", c); // Output: 厑
JavaScript:
const char = '\u5391';
console.log(char); // Output: 厑
Java:
char c = '\u5391';
System.out.println(c); // Output: 厑
JSON:
{"text": "\u5391"} // Value: 厑
Python:
char = '\u5391'
print(char) # Output: 厑
Perl:
my $char = "\x{5391}";
print $char; # Output: 厑
PHP:
$char = "\x{5391}";
echo $char; // Output: 厑
Ruby:
char = "\u{5391}"
puts char # Output: 厑
Rust:
let c = '\u{5391}';
println!("{}", c); // Output: 厑
Go:
char := '\u5391'
fmt.Printf("%c\n", char) // Output: 厑
CSS:
/* CSS content property */
.element::before {
content: "\005391"; /* 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%91
MD5:
553f63190301d6e3fd1de0612428b762
SHA1:
070f239106551280fa92c76444cf90861a3f4257
Base64:
5Y6R