C:
char c = '\u9600';
printf("%c\n", c); // Output: 阀
JavaScript:
const char = '\u9600';
console.log(char); // Output: 阀
Java:
char c = '\u9600';
System.out.println(c); // Output: 阀
JSON:
{"text": "\u9600"} // Value: 阀
Python:
char = '\u9600'
print(char) # Output: 阀
Perl:
my $char = "\x{9600}";
print $char; # Output: 阀
PHP:
$char = "\x{9600}";
echo $char; // Output: 阀
Ruby:
char = "\u{9600}"
puts char # Output: 阀
Rust:
let c = '\u{9600}';
println!("{}", c); // Output: 阀
Go:
char := '\u9600'
fmt.Printf("%c\n", char) // Output: 阀
CSS:
/* CSS content property */
.element::before {
content: "\009600"; /* 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%98%80
MD5:
a31fa9031dfc53b0be39ae0fcd9a8e12
SHA1:
cb71b40e68a0d518071212612656c1a1adfe17f1
Base64:
6ZiA