C:
char c = '\u8920';
printf("%c\n", c); // Output: 褠
JavaScript:
const char = '\u8920';
console.log(char); // Output: 褠
Java:
char c = '\u8920';
System.out.println(c); // Output: 褠
JSON:
{"text": "\u8920"} // Value: 褠
Python:
char = '\u8920'
print(char) # Output: 褠
Perl:
my $char = "\x{8920}";
print $char; # Output: 褠
PHP:
$char = "\x{8920}";
echo $char; // Output: 褠
Ruby:
char = "\u{8920}"
puts char # Output: 褠
Rust:
let c = '\u{8920}';
println!("{}", c); // Output: 褠
Go:
char := '\u8920'
fmt.Printf("%c\n", char) // Output: 褠
CSS:
/* CSS content property */
.element::before {
content: "\008920"; /* 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%A0
MD5:
f2f6aa7c391173d160f089549a8c150c
SHA1:
35125b0f1c0028e7bcaaecc41a3acc890fe3bd93
Base64:
6KSg