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