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