C:
char c = '\u9426';
printf("%c\n", c); // Output: 鐦
JavaScript:
const char = '\u9426';
console.log(char); // Output: 鐦
Java:
char c = '\u9426';
System.out.println(c); // Output: 鐦
JSON:
{"text": "\u9426"} // Value: 鐦
Python:
char = '\u9426'
print(char) # Output: 鐦
Perl:
my $char = "\x{9426}";
print $char; # Output: 鐦
PHP:
$char = "\x{9426}";
echo $char; // Output: 鐦
Ruby:
char = "\u{9426}"
puts char # Output: 鐦
Rust:
let c = '\u{9426}';
println!("{}", c); // Output: 鐦
Go:
char := '\u9426'
fmt.Printf("%c\n", char) // Output: 鐦
CSS:
/* CSS content property */
.element::before {
content: "\009426"; /* 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%90%A6
MD5:
dbe591ed6eed236397a168f9f613c0c7
SHA1:
42a313858f18eb1ca2d42bc860dd66f3f879059e
Base64:
6ZCm