C:
char c = '\u8841';
printf("%c\n", c); // Output: 衁
JavaScript:
const char = '\u8841';
console.log(char); // Output: 衁
Java:
char c = '\u8841';
System.out.println(c); // Output: 衁
JSON:
{"text": "\u8841"} // Value: 衁
Python:
char = '\u8841'
print(char) # Output: 衁
Perl:
my $char = "\x{8841}";
print $char; # Output: 衁
PHP:
$char = "\x{8841}";
echo $char; // Output: 衁
Ruby:
char = "\u{8841}"
puts char # Output: 衁
Rust:
let c = '\u{8841}';
println!("{}", c); // Output: 衁
Go:
char := '\u8841'
fmt.Printf("%c\n", char) // Output: 衁
CSS:
/* CSS content property */
.element::before {
content: "\008841"; /* 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%81
MD5:
084ec091144c2a9fc006c560af007f0a
SHA1:
b632521aa31e0455ca6f3d9c203589a598d69171
Base64:
6KGB