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