C:
char c = '\u0C40';
printf("%c\n", c); // Output: ీ
JavaScript:
const char = '\u0C40';
console.log(char); // Output: ీ
Java:
char c = '\u0C40';
System.out.println(c); // Output: ీ
JSON:
{"text": "\u0C40"} // Value: ీ
Python:
char = '\u0C40'
print(char) # Output: ీ
Perl:
my $char = "\x{0C40}";
print $char; # Output: ీ
PHP:
$char = "\x{0C40}";
echo $char; // Output: ీ
Ruby:
char = "\u{0C40}"
puts char # Output: ీ
Rust:
let c = '\u{C40}';
println!("{}", c); // Output: ీ
Go:
char := '\u0C40'
fmt.Printf("%c\n", char) // Output: ీ
CSS:
/* CSS content property */
.element::before {
content: "\000C40"; /* 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%B1%80
MD5:
ba06d844d330977d2439da3764c17046
SHA1:
f6131c44a825068544fb9c1d97cc84083395a7f0
Base64:
4LGA