C:
char c = '\u9268';
printf("%c\n", c); // Output: 鉨
JavaScript:
const char = '\u9268';
console.log(char); // Output: 鉨
Java:
char c = '\u9268';
System.out.println(c); // Output: 鉨
JSON:
{"text": "\u9268"} // Value: 鉨
Python:
char = '\u9268'
print(char) # Output: 鉨
Perl:
my $char = "\x{9268}";
print $char; # Output: 鉨
PHP:
$char = "\x{9268}";
echo $char; // Output: 鉨
Ruby:
char = "\u{9268}"
puts char # Output: 鉨
Rust:
let c = '\u{9268}';
println!("{}", c); // Output: 鉨
Go:
char := '\u9268'
fmt.Printf("%c\n", char) // Output: 鉨
CSS:
/* CSS content property */
.element::before {
content: "\009268"; /* 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%A8
MD5:
78cd9abbadaaea26a26a5344b741c56e
SHA1:
9acff15c3e58c2e0fb31c6674b737fa807776924
Base64:
6Ymo