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