C:
char c = '\u5351';
printf("%c\n", c); // Output: 卑
JavaScript:
const char = '\u5351';
console.log(char); // Output: 卑
Java:
char c = '\u5351';
System.out.println(c); // Output: 卑
JSON:
{"text": "\u5351"} // Value: 卑
Python:
char = '\u5351'
print(char) # Output: 卑
Perl:
my $char = "\x{5351}";
print $char; # Output: 卑
PHP:
$char = "\x{5351}";
echo $char; // Output: 卑
Ruby:
char = "\u{5351}"
puts char # Output: 卑
Rust:
let c = '\u{5351}';
println!("{}", c); // Output: 卑
Go:
char := '\u5351'
fmt.Printf("%c\n", char) // Output: 卑
CSS:
/* CSS content property */
.element::before {
content: "\005351"; /* 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%91
MD5:
017ded0a85aa8afd084f5657f79ef041
SHA1:
507d5fe49875861d9e81a669661e96f1817b00a7
Base64:
5Y2R