C:
char c = '\u0A48';
printf("%c\n", c); // Output: ੈ
JavaScript:
const char = '\u0A48';
console.log(char); // Output: ੈ
Java:
char c = '\u0A48';
System.out.println(c); // Output: ੈ
JSON:
{"text": "\u0A48"} // Value: ੈ
Python:
char = '\u0A48'
print(char) # Output: ੈ
Perl:
my $char = "\x{0A48}";
print $char; # Output: ੈ
PHP:
$char = "\x{0A48}";
echo $char; // Output: ੈ
Ruby:
char = "\u{0A48}"
puts char # Output: ੈ
Rust:
let c = '\u{A48}';
println!("{}", c); // Output: ੈ
Go:
char := '\u0A48'
fmt.Printf("%c\n", char) // Output: ੈ
CSS:
/* CSS content property */
.element::before {
content: "\000A48"; /* 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=%E0%A9%88
MD5:
5778a7f32e07b0b92d4fbd584d4b2960
SHA1:
8eda143d0ac7ea39c8843a45d3e2b8e9e39c2ba4
Base64:
4KmI