C:
char c = '\u9ECA';
printf("%c\n", c); // Output: 黊
JavaScript:
const char = '\u9ECA';
console.log(char); // Output: 黊
Java:
char c = '\u9ECA';
System.out.println(c); // Output: 黊
JSON:
{"text": "\u9ECA"} // Value: 黊
Python:
char = '\u9ECA'
print(char) # Output: 黊
Perl:
my $char = "\x{9ECA}";
print $char; # Output: 黊
PHP:
$char = "\x{9ECA}";
echo $char; // Output: 黊
Ruby:
char = "\u{9ECA}"
puts char # Output: 黊
Rust:
let c = '\u{9ECA}';
println!("{}", c); // Output: 黊
Go:
char := '\u9ECA'
fmt.Printf("%c\n", char) // Output: 黊
CSS:
/* CSS content property */
.element::before {
content: "\009ECA"; /* 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%8A
MD5:
500663141db91784cca0f2226472ec56
SHA1:
a79c1c26272ae7a6218d14b78d67fced92319165
Base64:
6buK