C:
char c = '\u9609';
printf("%c\n", c); // Output: 阉
JavaScript:
const char = '\u9609';
console.log(char); // Output: 阉
Java:
char c = '\u9609';
System.out.println(c); // Output: 阉
JSON:
{"text": "\u9609"} // Value: 阉
Python:
char = '\u9609'
print(char) # Output: 阉
Perl:
my $char = "\x{9609}";
print $char; # Output: 阉
PHP:
$char = "\x{9609}";
echo $char; // Output: 阉
Ruby:
char = "\u{9609}"
puts char # Output: 阉
Rust:
let c = '\u{9609}';
println!("{}", c); // Output: 阉
Go:
char := '\u9609'
fmt.Printf("%c\n", char) // Output: 阉
CSS:
/* CSS content property */
.element::before {
content: "\009609"; /* 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%89
MD5:
9fef5fad25288ba29ae23c3c71ef4476
SHA1:
9973697dd9e74586a45a7894ba6c81a512fcd763
Base64:
6ZiJ