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