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