C:
char c = '\u9744';
printf("%c\n", c); // Output: 靄
JavaScript:
const char = '\u9744';
console.log(char); // Output: 靄
Java:
char c = '\u9744';
System.out.println(c); // Output: 靄
JSON:
{"text": "\u9744"} // Value: 靄
Python:
char = '\u9744'
print(char) # Output: 靄
Perl:
my $char = "\x{9744}";
print $char; # Output: 靄
PHP:
$char = "\x{9744}";
echo $char; // Output: 靄
Ruby:
char = "\u{9744}"
puts char # Output: 靄
Rust:
let c = '\u{9744}';
println!("{}", c); // Output: 靄
Go:
char := '\u9744'
fmt.Printf("%c\n", char) // Output: 靄
CSS:
/* CSS content property */
.element::before {
content: "\009744"; /* 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%84
MD5:
8ca35fbcb052557b0fcabae1a2eacdbb
SHA1:
413f1664ecccdd11428741e0d3d937458926b733
Base64:
6Z2E