C:
char c = '\u9288';
printf("%c\n", c); // Output: 銈
JavaScript:
const char = '\u9288';
console.log(char); // Output: 銈
Java:
char c = '\u9288';
System.out.println(c); // Output: 銈
JSON:
{"text": "\u9288"} // Value: 銈
Python:
char = '\u9288'
print(char) # Output: 銈
Perl:
my $char = "\x{9288}";
print $char; # Output: 銈
PHP:
$char = "\x{9288}";
echo $char; // Output: 銈
Ruby:
char = "\u{9288}"
puts char # Output: 銈
Rust:
let c = '\u{9288}';
println!("{}", c); // Output: 銈
Go:
char := '\u9288'
fmt.Printf("%c\n", char) // Output: 銈
CSS:
/* CSS content property */
.element::before {
content: "\009288"; /* 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%88
MD5:
811f6d2384428134190472b19aedd237
SHA1:
f9ed908f374817213d93976466edfd63948b44ab
Base64:
6YqI