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