C:
char c = '\u0981';
printf("%c\n", c); // Output: ঁ
JavaScript:
const char = '\u0981';
console.log(char); // Output: ঁ
Java:
char c = '\u0981';
System.out.println(c); // Output: ঁ
JSON:
{"text": "\u0981"} // Value: ঁ
Python:
char = '\u0981'
print(char) # Output: ঁ
Perl:
my $char = "\x{0981}";
print $char; # Output: ঁ
PHP:
$char = "\x{0981}";
echo $char; // Output: ঁ
Ruby:
char = "\u{0981}"
puts char # Output: ঁ
Rust:
let c = '\u{981}';
println!("{}", c); // Output: ঁ
Go:
char := '\u0981'
fmt.Printf("%c\n", char) // Output: ঁ
CSS:
/* CSS content property */
.element::before {
content: "\000981"; /* 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%A6%81
MD5:
e475208c992d2da90291bc4ee05a5fb0
SHA1:
5eec2a321d40aa668304bb0ca969eebce8ccdcc2
Base64:
4KaB