C:
char c = '\u9256';
printf("%c\n", c); // Output: 鉖
JavaScript:
const char = '\u9256';
console.log(char); // Output: 鉖
Java:
char c = '\u9256';
System.out.println(c); // Output: 鉖
JSON:
{"text": "\u9256"} // Value: 鉖
Python:
char = '\u9256'
print(char) # Output: 鉖
Perl:
my $char = "\x{9256}";
print $char; # Output: 鉖
PHP:
$char = "\x{9256}";
echo $char; // Output: 鉖
Ruby:
char = "\u{9256}"
puts char # Output: 鉖
Rust:
let c = '\u{9256}';
println!("{}", c); // Output: 鉖
Go:
char := '\u9256'
fmt.Printf("%c\n", char) // Output: 鉖
CSS:
/* CSS content property */
.element::before {
content: "\009256"; /* 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%96
MD5:
3b54d63fc2125b328ef6854c94f0d834
SHA1:
af0c37690c972a9b73592bef359d0402e9fb64b7
Base64:
6YmW