C:
char c = '\u8858';
printf("%c\n", c); // Output: 衘
JavaScript:
const char = '\u8858';
console.log(char); // Output: 衘
Java:
char c = '\u8858';
System.out.println(c); // Output: 衘
JSON:
{"text": "\u8858"} // Value: 衘
Python:
char = '\u8858'
print(char) # Output: 衘
Perl:
my $char = "\x{8858}";
print $char; # Output: 衘
PHP:
$char = "\x{8858}";
echo $char; // Output: 衘
Ruby:
char = "\u{8858}"
puts char # Output: 衘
Rust:
let c = '\u{8858}';
println!("{}", c); // Output: 衘
Go:
char := '\u8858'
fmt.Printf("%c\n", char) // Output: 衘
CSS:
/* CSS content property */
.element::before {
content: "\008858"; /* 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%A1%98
MD5:
f959194b0b427861a3932a3e1e47efb5
SHA1:
955bf175c3ec5193b0a8c5c6d4ea9a81cab4a5b8
Base64:
6KGY