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