C:
char c = '\u9C26';
printf("%c\n", c); // Output: 鰦
JavaScript:
const char = '\u9C26';
console.log(char); // Output: 鰦
Java:
char c = '\u9C26';
System.out.println(c); // Output: 鰦
JSON:
{"text": "\u9C26"} // Value: 鰦
Python:
char = '\u9C26'
print(char) # Output: 鰦
Perl:
my $char = "\x{9C26}";
print $char; # Output: 鰦
PHP:
$char = "\x{9C26}";
echo $char; // Output: 鰦
Ruby:
char = "\u{9C26}"
puts char # Output: 鰦
Rust:
let c = '\u{9C26}';
println!("{}", c); // Output: 鰦
Go:
char := '\u9C26'
fmt.Printf("%c\n", char) // Output: 鰦
CSS:
/* CSS content property */
.element::before {
content: "\009C26"; /* 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%B0%A6
MD5:
85cdfb8c522ebe2e575d50854b1aff49
SHA1:
e8d8750a18351112e1da59409adcf0fdbf9be41f
Base64:
6bCm