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