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