C:
char c = '\u9280';
printf("%c\n", c); // Output: 銀
JavaScript:
const char = '\u9280';
console.log(char); // Output: 銀
Java:
char c = '\u9280';
System.out.println(c); // Output: 銀
JSON:
{"text": "\u9280"} // Value: 銀
Python:
char = '\u9280'
print(char) # Output: 銀
Perl:
my $char = "\x{9280}";
print $char; # Output: 銀
PHP:
$char = "\x{9280}";
echo $char; // Output: 銀
Ruby:
char = "\u{9280}"
puts char # Output: 銀
Rust:
let c = '\u{9280}';
println!("{}", c); // Output: 銀
Go:
char := '\u9280'
fmt.Printf("%c\n", char) // Output: 銀
CSS:
/* CSS content property */
.element::before {
content: "\009280"; /* 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%8A%80
MD5:
e8afb0ae46230ed21574e70cc592bee6
SHA1:
ba9358753016902d1b526e0de41257601cf62ea1
Base64:
6YqA