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