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