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