C:
char c = '\u9295';
printf("%c\n", c); // Output: 銕
JavaScript:
const char = '\u9295';
console.log(char); // Output: 銕
Java:
char c = '\u9295';
System.out.println(c); // Output: 銕
JSON:
{"text": "\u9295"} // Value: 銕
Python:
char = '\u9295'
print(char) # Output: 銕
Perl:
my $char = "\x{9295}";
print $char; # Output: 銕
PHP:
$char = "\x{9295}";
echo $char; // Output: 銕
Ruby:
char = "\u{9295}"
puts char # Output: 銕
Rust:
let c = '\u{9295}';
println!("{}", c); // Output: 銕
Go:
char := '\u9295'
fmt.Printf("%c\n", char) // Output: 銕
CSS:
/* CSS content property */
.element::before {
content: "\009295"; /* 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%95
MD5:
f8b4edec25336fa09775c6a767777aee
SHA1:
a4ed7059103c838defa837b84a5ec424e0bf959e
Base64:
6YqV