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