C:
char c = '\u5367';
printf("%c\n", c); // Output: 卧
JavaScript:
const char = '\u5367';
console.log(char); // Output: 卧
Java:
char c = '\u5367';
System.out.println(c); // Output: 卧
JSON:
{"text": "\u5367"} // Value: 卧
Python:
char = '\u5367'
print(char) # Output: 卧
Perl:
my $char = "\x{5367}";
print $char; # Output: 卧
PHP:
$char = "\x{5367}";
echo $char; // Output: 卧
Ruby:
char = "\u{5367}"
puts char # Output: 卧
Rust:
let c = '\u{5367}';
println!("{}", c); // Output: 卧
Go:
char := '\u5367'
fmt.Printf("%c\n", char) // Output: 卧
CSS:
/* CSS content property */
.element::before {
content: "\005367"; /* 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%8D%A7
MD5:
3bd6703819da2d0b3aa77ed96316ea3c
SHA1:
053d389ae97169c6d28da659391bc60503b62e7c
Base64:
5Y2n