C:
char c = '\u9999';
printf("%c\n", c); // Output: 香
JavaScript:
const char = '\u9999';
console.log(char); // Output: 香
Java:
char c = '\u9999';
System.out.println(c); // Output: 香
JSON:
{"text": "\u9999"} // Value: 香
Python:
char = '\u9999'
print(char) # Output: 香
Perl:
my $char = "\x{9999}";
print $char; # Output: 香
PHP:
$char = "\x{9999}";
echo $char; // Output: 香
Ruby:
char = "\u{9999}"
puts char # Output: 香
Rust:
let c = '\u{9999}';
println!("{}", c); // Output: 香
Go:
char := '\u9999'
fmt.Printf("%c\n", char) // Output: 香
CSS:
/* CSS content property */
.element::before {
content: "\009999"; /* 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%A6%99
MD5:
431ffc5f2ab5ec46163eae0e2634ebbf
SHA1:
7ba41552d7e5713b73ad9dc788b70aeecfb42dfa
Base64:
6aaZ