C:
char c = '\u9841';
printf("%c\n", c); // Output: 顁
JavaScript:
const char = '\u9841';
console.log(char); // Output: 顁
Java:
char c = '\u9841';
System.out.println(c); // Output: 顁
JSON:
{"text": "\u9841"} // Value: 顁
Python:
char = '\u9841'
print(char) # Output: 顁
Perl:
my $char = "\x{9841}";
print $char; # Output: 顁
PHP:
$char = "\x{9841}";
echo $char; // Output: 顁
Ruby:
char = "\u{9841}"
puts char # Output: 顁
Rust:
let c = '\u{9841}';
println!("{}", c); // Output: 顁
Go:
char := '\u9841'
fmt.Printf("%c\n", char) // Output: 顁
CSS:
/* CSS content property */
.element::before {
content: "\009841"; /* 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%A1%81
MD5:
9c09e8c65daf5f17bcd51e5548746c67
SHA1:
306840cecb33e94647ef2fe4338b21a00bc87f58
Base64:
6aGB