C:
char c = '\u0D8A';
printf("%c\n", c); // Output: ඊ
JavaScript:
const char = '\u0D8A';
console.log(char); // Output: ඊ
Java:
char c = '\u0D8A';
System.out.println(c); // Output: ඊ
JSON:
{"text": "\u0D8A"} // Value: ඊ
Python:
char = '\u0D8A'
print(char) # Output: ඊ
Perl:
my $char = "\x{0D8A}";
print $char; # Output: ඊ
PHP:
$char = "\x{0D8A}";
echo $char; // Output: ඊ
Ruby:
char = "\u{0D8A}"
puts char # Output: ඊ
Rust:
let c = '\u{D8A}';
println!("{}", c); // Output: ඊ
Go:
char := '\u0D8A'
fmt.Printf("%c\n", char) // Output: ඊ
CSS:
/* CSS content property */
.element::before {
content: "\000D8A"; /* 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%B6%8A
MD5:
b6dc50bc36dec44ba84c0e14910f01ad
SHA1:
923e050b0e04fe67a28ae1ec7bc7d4c69705ef49
Base64:
4LaK