C:
char c = '\u9EC1';
printf("%c\n", c); // Output: 黁
JavaScript:
const char = '\u9EC1';
console.log(char); // Output: 黁
Java:
char c = '\u9EC1';
System.out.println(c); // Output: 黁
JSON:
{"text": "\u9EC1"} // Value: 黁
Python:
char = '\u9EC1'
print(char) # Output: 黁
Perl:
my $char = "\x{9EC1}";
print $char; # Output: 黁
PHP:
$char = "\x{9EC1}";
echo $char; // Output: 黁
Ruby:
char = "\u{9EC1}"
puts char # Output: 黁
Rust:
let c = '\u{9EC1}';
println!("{}", c); // Output: 黁
Go:
char := '\u9EC1'
fmt.Printf("%c\n", char) // Output: 黁
CSS:
/* CSS content property */
.element::before {
content: "\009EC1"; /* 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%BB%81
MD5:
27dec8adff693d4fc7cd57ba6a81d5d1
SHA1:
2ff0f9a70252408c32743968ae6a23c80d5aa4cb
Base64:
6buB