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