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