C:
char c = '\u8933';
printf("%c\n", c); // Output: 褳
JavaScript:
const char = '\u8933';
console.log(char); // Output: 褳
Java:
char c = '\u8933';
System.out.println(c); // Output: 褳
JSON:
{"text": "\u8933"} // Value: 褳
Python:
char = '\u8933'
print(char) # Output: 褳
Perl:
my $char = "\x{8933}";
print $char; # Output: 褳
PHP:
$char = "\x{8933}";
echo $char; // Output: 褳
Ruby:
char = "\u{8933}"
puts char # Output: 褳
Rust:
let c = '\u{8933}';
println!("{}", c); // Output: 褳
Go:
char := '\u8933'
fmt.Printf("%c\n", char) // Output: 褳
CSS:
/* CSS content property */
.element::before {
content: "\008933"; /* 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%B3
MD5:
4ad6038a527f0251a7bc3f92746ff4e1
SHA1:
1ea6a496588fff16b559c8540e7d8ebd5ce0173a
Base64:
6KSz