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