C:
char c = '\u9509';
printf("%c\n", c); // Output: 锉
JavaScript:
const char = '\u9509';
console.log(char); // Output: 锉
Java:
char c = '\u9509';
System.out.println(c); // Output: 锉
JSON:
{"text": "\u9509"} // Value: 锉
Python:
char = '\u9509'
print(char) # Output: 锉
Perl:
my $char = "\x{9509}";
print $char; # Output: 锉
PHP:
$char = "\x{9509}";
echo $char; // Output: 锉
Ruby:
char = "\u{9509}"
puts char # Output: 锉
Rust:
let c = '\u{9509}';
println!("{}", c); // Output: 锉
Go:
char := '\u9509'
fmt.Printf("%c\n", char) // Output: 锉
CSS:
/* CSS content property */
.element::before {
content: "\009509"; /* 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%89
MD5:
e18bb78334759fb887270374c74ff3fa
SHA1:
935a400617bc907605805c2a909fbe2c60250d07
Base64:
6ZSJ