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