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