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