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