C:
char c = '\u0C3E';
printf("%c\n", c); // Output: ా
JavaScript:
const char = '\u0C3E';
console.log(char); // Output: ా
Java:
char c = '\u0C3E';
System.out.println(c); // Output: ా
JSON:
{"text": "\u0C3E"} // Value: ా
Python:
char = '\u0C3E'
print(char) # Output: ా
Perl:
my $char = "\x{0C3E}";
print $char; # Output: ా
PHP:
$char = "\x{0C3E}";
echo $char; // Output: ా
Ruby:
char = "\u{0C3E}"
puts char # Output: ా
Rust:
let c = '\u{C3E}';
println!("{}", c); // Output: ా
Go:
char := '\u0C3E'
fmt.Printf("%c\n", char) // Output: ా
CSS:
/* CSS content property */
.element::before {
content: "\000C3E"; /* 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%B0%BE
MD5:
d19a2a6e23e2122883d9e6ac0aefdb30
SHA1:
71df3f3fe4758adcfc71300830e69427dac02443
Base64:
4LC+