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