C:
char c = '\u9563';
printf("%c\n", c); // Output: 镣
JavaScript:
const char = '\u9563';
console.log(char); // Output: 镣
Java:
char c = '\u9563';
System.out.println(c); // Output: 镣
JSON:
{"text": "\u9563"} // Value: 镣
Python:
char = '\u9563'
print(char) # Output: 镣
Perl:
my $char = "\x{9563}";
print $char; # Output: 镣
PHP:
$char = "\x{9563}";
echo $char; // Output: 镣
Ruby:
char = "\u{9563}"
puts char # Output: 镣
Rust:
let c = '\u{9563}';
println!("{}", c); // Output: 镣
Go:
char := '\u9563'
fmt.Printf("%c\n", char) // Output: 镣
CSS:
/* CSS content property */
.element::before {
content: "\009563"; /* 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%A3
MD5:
5465f9545869e426ddadff42a4c04fbd
SHA1:
4599abf89611bdd92c0c13f29ea91df66e1d35d6
Base64:
6ZWj