C:
char c = '\u9747';
printf("%c\n", c); // Output: 靇
JavaScript:
const char = '\u9747';
console.log(char); // Output: 靇
Java:
char c = '\u9747';
System.out.println(c); // Output: 靇
JSON:
{"text": "\u9747"} // Value: 靇
Python:
char = '\u9747'
print(char) # Output: 靇
Perl:
my $char = "\x{9747}";
print $char; # Output: 靇
PHP:
$char = "\x{9747}";
echo $char; // Output: 靇
Ruby:
char = "\u{9747}"
puts char # Output: 靇
Rust:
let c = '\u{9747}';
println!("{}", c); // Output: 靇
Go:
char := '\u9747'
fmt.Printf("%c\n", char) // Output: 靇
CSS:
/* CSS content property */
.element::before {
content: "\009747"; /* 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%87
MD5:
c9661f6b9199b6c0a871be69a6cbd21d
SHA1:
45fd7dd57999a7b1d732be5e8308792e07425f72
Base64:
6Z2H