C:
char c = '\u9B1C';
printf("%c\n", c); // Output: 鬜
JavaScript:
const char = '\u9B1C';
console.log(char); // Output: 鬜
Java:
char c = '\u9B1C';
System.out.println(c); // Output: 鬜
JSON:
{"text": "\u9B1C"} // Value: 鬜
Python:
char = '\u9B1C'
print(char) # Output: 鬜
Perl:
my $char = "\x{9B1C}";
print $char; # Output: 鬜
PHP:
$char = "\x{9B1C}";
echo $char; // Output: 鬜
Ruby:
char = "\u{9B1C}"
puts char # Output: 鬜
Rust:
let c = '\u{9B1C}';
println!("{}", c); // Output: 鬜
Go:
char := '\u9B1C'
fmt.Printf("%c\n", char) // Output: 鬜
CSS:
/* CSS content property */
.element::before {
content: "\009B1C"; /* 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=%E9%AC%9C
MD5:
ff63a43730626b9a304e3dd5b65ca9be
SHA1:
88aba0f2274f765593b2f28635e515d55efc4d5a
Base64:
6ayc