C:
char c = '\u9754';
printf("%c\n", c); // Output: 靔
JavaScript:
const char = '\u9754';
console.log(char); // Output: 靔
Java:
char c = '\u9754';
System.out.println(c); // Output: 靔
JSON:
{"text": "\u9754"} // Value: 靔
Python:
char = '\u9754'
print(char) # Output: 靔
Perl:
my $char = "\x{9754}";
print $char; # Output: 靔
PHP:
$char = "\x{9754}";
echo $char; // Output: 靔
Ruby:
char = "\u{9754}"
puts char # Output: 靔
Rust:
let c = '\u{9754}';
println!("{}", c); // Output: 靔
Go:
char := '\u9754'
fmt.Printf("%c\n", char) // Output: 靔
CSS:
/* CSS content property */
.element::before {
content: "\009754"; /* 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%94
MD5:
15a4b7bd54c7756910f281b310328812
SHA1:
66e305f031b0a496591590ce857b627093a7a2a5
Base64:
6Z2U