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