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