C:
char c = '\u9510';
printf("%c\n", c); // Output: 锐
JavaScript:
const char = '\u9510';
console.log(char); // Output: 锐
Java:
char c = '\u9510';
System.out.println(c); // Output: 锐
JSON:
{"text": "\u9510"} // Value: 锐
Python:
char = '\u9510'
print(char) # Output: 锐
Perl:
my $char = "\x{9510}";
print $char; # Output: 锐
PHP:
$char = "\x{9510}";
echo $char; // Output: 锐
Ruby:
char = "\u{9510}"
puts char # Output: 锐
Rust:
let c = '\u{9510}';
println!("{}", c); // Output: 锐
Go:
char := '\u9510'
fmt.Printf("%c\n", char) // Output: 锐
CSS:
/* CSS content property */
.element::before {
content: "\009510"; /* 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%94%90
MD5:
a8b2e8d874054bfa45c23dd4de111ad5
SHA1:
29fbd867d90b9c11c581ded440608167fc79d78e
Base64:
6ZSQ