C:
char c = '\u9751';
printf("%c\n", c); // Output: 靑
JavaScript:
const char = '\u9751';
console.log(char); // Output: 靑
Java:
char c = '\u9751';
System.out.println(c); // Output: 靑
JSON:
{"text": "\u9751"} // Value: 靑
Python:
char = '\u9751'
print(char) # Output: 靑
Perl:
my $char = "\x{9751}";
print $char; # Output: 靑
PHP:
$char = "\x{9751}";
echo $char; // Output: 靑
Ruby:
char = "\u{9751}"
puts char # Output: 靑
Rust:
let c = '\u{9751}';
println!("{}", c); // Output: 靑
Go:
char := '\u9751'
fmt.Printf("%c\n", char) // Output: 靑
CSS:
/* CSS content property */
.element::before {
content: "\009751"; /* 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%91
MD5:
2c9016d99d1e94f9884eba58a32e2b34
SHA1:
96582b1722b30cc15387f0674ff1cb0e5f9a4d75
Base64:
6Z2R