C:
char c = '\u9741';
printf("%c\n", c); // Output: 靁
JavaScript:
const char = '\u9741';
console.log(char); // Output: 靁
Java:
char c = '\u9741';
System.out.println(c); // Output: 靁
JSON:
{"text": "\u9741"} // Value: 靁
Python:
char = '\u9741'
print(char) # Output: 靁
Perl:
my $char = "\x{9741}";
print $char; # Output: 靁
PHP:
$char = "\x{9741}";
echo $char; // Output: 靁
Ruby:
char = "\u{9741}"
puts char # Output: 靁
Rust:
let c = '\u{9741}';
println!("{}", c); // Output: 靁
Go:
char := '\u9741'
fmt.Printf("%c\n", char) // Output: 靁
CSS:
/* CSS content property */
.element::before {
content: "\009741"; /* 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%9D%81
MD5:
ac7bd83b3e60eead498f0ad7de68cc4f
SHA1:
9488ef127f36f9d1ba5899162598971130ca9468
Base64:
6Z2B