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