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