C:
char c = '\u5C28';
printf("%c\n", c); // Output: 尨
JavaScript:
const char = '\u5C28';
console.log(char); // Output: 尨
Java:
char c = '\u5C28';
System.out.println(c); // Output: 尨
JSON:
{"text": "\u5C28"} // Value: 尨
Python:
char = '\u5C28'
print(char) # Output: 尨
Perl:
my $char = "\x{5C28}";
print $char; # Output: 尨
PHP:
$char = "\x{5C28}";
echo $char; // Output: 尨
Ruby:
char = "\u{5C28}"
puts char # Output: 尨
Rust:
let c = '\u{5C28}';
println!("{}", c); // Output: 尨
Go:
char := '\u5C28'
fmt.Printf("%c\n", char) // Output: 尨
CSS:
/* CSS content property */
.element::before {
content: "\005C28"; /* 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%B0%A8
MD5:
cae3b575ec6830906f5242cf961b4cbd
SHA1:
00dc1ed6ef87e3d401f45995abac0cbeeba2e469
Base64:
5bCo