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