C:
char c = '\u9298';
printf("%c\n", c); // Output: 銘
JavaScript:
const char = '\u9298';
console.log(char); // Output: 銘
Java:
char c = '\u9298';
System.out.println(c); // Output: 銘
JSON:
{"text": "\u9298"} // Value: 銘
Python:
char = '\u9298'
print(char) # Output: 銘
Perl:
my $char = "\x{9298}";
print $char; # Output: 銘
PHP:
$char = "\x{9298}";
echo $char; // Output: 銘
Ruby:
char = "\u{9298}"
puts char # Output: 銘
Rust:
let c = '\u{9298}';
println!("{}", c); // Output: 銘
Go:
char := '\u9298'
fmt.Printf("%c\n", char) // Output: 銘
CSS:
/* CSS content property */
.element::before {
content: "\009298"; /* 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%98
MD5:
9ac126cf203c9cd998fa761ce94a3ed7
SHA1:
63f5aa50bc3a9e37af089eaf9ab722034c3f2ff1
Base64:
6YqY