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