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