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