C:
char c = '\u8872';
printf("%c\n", c); // Output: 衲
JavaScript:
const char = '\u8872';
console.log(char); // Output: 衲
Java:
char c = '\u8872';
System.out.println(c); // Output: 衲
JSON:
{"text": "\u8872"} // Value: 衲
Python:
char = '\u8872'
print(char) # Output: 衲
Perl:
my $char = "\x{8872}";
print $char; # Output: 衲
PHP:
$char = "\x{8872}";
echo $char; // Output: 衲
Ruby:
char = "\u{8872}"
puts char # Output: 衲
Rust:
let c = '\u{8872}';
println!("{}", c); // Output: 衲
Go:
char := '\u8872'
fmt.Printf("%c\n", char) // Output: 衲
CSS:
/* CSS content property */
.element::before {
content: "\008872"; /* 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%B2
MD5:
6aecf9081a58542af88b4acc7be52a00
SHA1:
0aa390e0c2031de9f4c906e8b6ec681cd92c8c75
Base64:
6KGy