C:
char c = '\u9064';
printf("%c\n", c); // Output: 遤
JavaScript:
const char = '\u9064';
console.log(char); // Output: 遤
Java:
char c = '\u9064';
System.out.println(c); // Output: 遤
JSON:
{"text": "\u9064"} // Value: 遤
Python:
char = '\u9064'
print(char) # Output: 遤
Perl:
my $char = "\x{9064}";
print $char; # Output: 遤
PHP:
$char = "\x{9064}";
echo $char; // Output: 遤
Ruby:
char = "\u{9064}"
puts char # Output: 遤
Rust:
let c = '\u{9064}';
println!("{}", c); // Output: 遤
Go:
char := '\u9064'
fmt.Printf("%c\n", char) // Output: 遤
CSS:
/* CSS content property */
.element::before {
content: "\009064"; /* 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%81%A4
MD5:
117a9c51962c3580272b71a847ec6652
SHA1:
cc8c3426315a60f816a0a387044116befb2c516f
Base64:
6YGk