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