C:
char c = '\u9AC9';
printf("%c\n", c); // Output: 髉
JavaScript:
const char = '\u9AC9';
console.log(char); // Output: 髉
Java:
char c = '\u9AC9';
System.out.println(c); // Output: 髉
JSON:
{"text": "\u9AC9"} // Value: 髉
Python:
char = '\u9AC9'
print(char) # Output: 髉
Perl:
my $char = "\x{9AC9}";
print $char; # Output: 髉
PHP:
$char = "\x{9AC9}";
echo $char; // Output: 髉
Ruby:
char = "\u{9AC9}"
puts char # Output: 髉
Rust:
let c = '\u{9AC9}';
println!("{}", c); // Output: 髉
Go:
char := '\u9AC9'
fmt.Printf("%c\n", char) // Output: 髉
CSS:
/* CSS content property */
.element::before {
content: "\009AC9"; /* 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%AB%89
MD5:
974e498d0e1c73b884ee342bcc98b752
SHA1:
09cb9c778c18cc1a0fe57fd74eac8e2b97ab66ff
Base64:
6auJ