C:
char c = '\u9641';
printf("%c\n", c); // Output: 陁
JavaScript:
const char = '\u9641';
console.log(char); // Output: 陁
Java:
char c = '\u9641';
System.out.println(c); // Output: 陁
JSON:
{"text": "\u9641"} // Value: 陁
Python:
char = '\u9641'
print(char) # Output: 陁
Perl:
my $char = "\x{9641}";
print $char; # Output: 陁
PHP:
$char = "\x{9641}";
echo $char; // Output: 陁
Ruby:
char = "\u{9641}"
puts char # Output: 陁
Rust:
let c = '\u{9641}';
println!("{}", c); // Output: 陁
Go:
char := '\u9641'
fmt.Printf("%c\n", char) // Output: 陁
CSS:
/* CSS content property */
.element::before {
content: "\009641"; /* 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%99%81
MD5:
7b642ba9f9207929a2881c5a98b9e212
SHA1:
8b8d139bb4ae4aa5f417f2bd823fabbaaf77bc3f
Base64:
6ZmB