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