C:
char c = '\u8855';
printf("%c\n", c); // Output: 衕
JavaScript:
const char = '\u8855';
console.log(char); // Output: 衕
Java:
char c = '\u8855';
System.out.println(c); // Output: 衕
JSON:
{"text": "\u8855"} // Value: 衕
Python:
char = '\u8855'
print(char) # Output: 衕
Perl:
my $char = "\x{8855}";
print $char; # Output: 衕
PHP:
$char = "\x{8855}";
echo $char; // Output: 衕
Ruby:
char = "\u{8855}"
puts char # Output: 衕
Rust:
let c = '\u{8855}';
println!("{}", c); // Output: 衕
Go:
char := '\u8855'
fmt.Printf("%c\n", char) // Output: 衕
CSS:
/* CSS content property */
.element::before {
content: "\008855"; /* 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%95
MD5:
05edec103133f9bb2148a8dc74ce5847
SHA1:
4c3de538cbd8d724aca467fb381c7a3fe88e51d0
Base64:
6KGV