C:
char c = '\u9607';
printf("%c\n", c); // Output: 阇
JavaScript:
const char = '\u9607';
console.log(char); // Output: 阇
Java:
char c = '\u9607';
System.out.println(c); // Output: 阇
JSON:
{"text": "\u9607"} // Value: 阇
Python:
char = '\u9607'
print(char) # Output: 阇
Perl:
my $char = "\x{9607}";
print $char; # Output: 阇
PHP:
$char = "\x{9607}";
echo $char; // Output: 阇
Ruby:
char = "\u{9607}"
puts char # Output: 阇
Rust:
let c = '\u{9607}';
println!("{}", c); // Output: 阇
Go:
char := '\u9607'
fmt.Printf("%c\n", char) // Output: 阇
CSS:
/* CSS content property */
.element::before {
content: "\009607"; /* 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%87
MD5:
31381adafcfa75ccdf5734eaa021fb29
SHA1:
86b7078781f423bec01995731485d464e4c77a84
Base64:
6ZiH