C:
char c = '\u8928';
printf("%c\n", c); // Output: 褨
JavaScript:
const char = '\u8928';
console.log(char); // Output: 褨
Java:
char c = '\u8928';
System.out.println(c); // Output: 褨
JSON:
{"text": "\u8928"} // Value: 褨
Python:
char = '\u8928'
print(char) # Output: 褨
Perl:
my $char = "\x{8928}";
print $char; # Output: 褨
PHP:
$char = "\x{8928}";
echo $char; // Output: 褨
Ruby:
char = "\u{8928}"
puts char # Output: 褨
Rust:
let c = '\u{8928}';
println!("{}", c); // Output: 褨
Go:
char := '\u8928'
fmt.Printf("%c\n", char) // Output: 褨
CSS:
/* CSS content property */
.element::before {
content: "\008928"; /* 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=%E8%A4%A8
MD5:
815ad004015063f976fc8a4b503e0f18
SHA1:
81d35ebcad8af9c072baa54f1c543c48f13ce7ab
Base64:
6KSo