C:
char c = '\u8864';
printf("%c\n", c); // Output: 衤
JavaScript:
const char = '\u8864';
console.log(char); // Output: 衤
Java:
char c = '\u8864';
System.out.println(c); // Output: 衤
JSON:
{"text": "\u8864"} // Value: 衤
Python:
char = '\u8864'
print(char) # Output: 衤
Perl:
my $char = "\x{8864}";
print $char; # Output: 衤
PHP:
$char = "\x{8864}";
echo $char; // Output: 衤
Ruby:
char = "\u{8864}"
puts char # Output: 衤
Rust:
let c = '\u{8864}';
println!("{}", c); // Output: 衤
Go:
char := '\u8864'
fmt.Printf("%c\n", char) // Output: 衤
CSS:
/* CSS content property */
.element::before {
content: "\008864"; /* 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%A4
MD5:
972bd0322a161eed0f32b9b5c2f0d1c4
SHA1:
3dc78ad4e973db9f3e7b0703726d9fbdd2a2bea0
Base64:
6KGk