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