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