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