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