C:
char c = '\u5D0A';
printf("%c\n", c); // Output: 崊
JavaScript:
const char = '\u5D0A';
console.log(char); // Output: 崊
Java:
char c = '\u5D0A';
System.out.println(c); // Output: 崊
JSON:
{"text": "\u5D0A"} // Value: 崊
Python:
char = '\u5D0A'
print(char) # Output: 崊
Perl:
my $char = "\x{5D0A}";
print $char; # Output: 崊
PHP:
$char = "\x{5D0A}";
echo $char; // Output: 崊
Ruby:
char = "\u{5D0A}"
puts char # Output: 崊
Rust:
let c = '\u{5D0A}';
println!("{}", c); // Output: 崊
Go:
char := '\u5D0A'
fmt.Printf("%c\n", char) // Output: 崊
CSS:
/* CSS content property */
.element::before {
content: "\005D0A"; /* 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%B4%8A
MD5:
c2fb8e80dc4f34ca9a87f83cf911ecdc
SHA1:
2d3598b588d3c2d62ed7c708e2f222e62b596d55
Base64:
5bSK