C:
char c = '\u5368';
printf("%c\n", c); // Output: 卨
JavaScript:
const char = '\u5368';
console.log(char); // Output: 卨
Java:
char c = '\u5368';
System.out.println(c); // Output: 卨
JSON:
{"text": "\u5368"} // Value: 卨
Python:
char = '\u5368'
print(char) # Output: 卨
Perl:
my $char = "\x{5368}";
print $char; # Output: 卨
PHP:
$char = "\x{5368}";
echo $char; // Output: 卨
Ruby:
char = "\u{5368}"
puts char # Output: 卨
Rust:
let c = '\u{5368}';
println!("{}", c); // Output: 卨
Go:
char := '\u5368'
fmt.Printf("%c\n", char) // Output: 卨
CSS:
/* CSS content property */
.element::before {
content: "\005368"; /* 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%A8
MD5:
04f8356a59ef2214731e726892b14ab0
SHA1:
62414e15ad694605e39811c4239a90b860b67aae
Base64:
5Y2o