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