C:
char c = '\u9489';
printf("%c\n", c); // Output: 钉
JavaScript:
const char = '\u9489';
console.log(char); // Output: 钉
Java:
char c = '\u9489';
System.out.println(c); // Output: 钉
JSON:
{"text": "\u9489"} // Value: 钉
Python:
char = '\u9489'
print(char) # Output: 钉
Perl:
my $char = "\x{9489}";
print $char; # Output: 钉
PHP:
$char = "\x{9489}";
echo $char; // Output: 钉
Ruby:
char = "\u{9489}"
puts char # Output: 钉
Rust:
let c = '\u{9489}';
println!("{}", c); // Output: 钉
Go:
char := '\u9489'
fmt.Printf("%c\n", char) // Output: 钉
CSS:
/* CSS content property */
.element::before {
content: "\009489"; /* 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%92%89
MD5:
51bae1e0b1d5eade8e42e55837792174
SHA1:
64fe27374d1d3e550f6261257c858ecd27960e9a
Base64:
6ZKJ