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