C:
char c = '\u9EC6';
printf("%c\n", c); // Output: 黆
JavaScript:
const char = '\u9EC6';
console.log(char); // Output: 黆
Java:
char c = '\u9EC6';
System.out.println(c); // Output: 黆
JSON:
{"text": "\u9EC6"} // Value: 黆
Python:
char = '\u9EC6'
print(char) # Output: 黆
Perl:
my $char = "\x{9EC6}";
print $char; # Output: 黆
PHP:
$char = "\x{9EC6}";
echo $char; // Output: 黆
Ruby:
char = "\u{9EC6}"
puts char # Output: 黆
Rust:
let c = '\u{9EC6}';
println!("{}", c); // Output: 黆
Go:
char := '\u9EC6'
fmt.Printf("%c\n", char) // Output: 黆
CSS:
/* CSS content property */
.element::before {
content: "\009EC6"; /* 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%BB%86
MD5:
4c58caf7280e522ff7a233322c0ca450
SHA1:
2f9663998278a9bc48792b97209143b705705bf4
Base64:
6buG