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