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