C:
char c = '\u0983';
printf("%c\n", c); // Output: ঃ
JavaScript:
const char = '\u0983';
console.log(char); // Output: ঃ
Java:
char c = '\u0983';
System.out.println(c); // Output: ঃ
JSON:
{"text": "\u0983"} // Value: ঃ
Python:
char = '\u0983'
print(char) # Output: ঃ
Perl:
my $char = "\x{0983}";
print $char; # Output: ঃ
PHP:
$char = "\x{0983}";
echo $char; // Output: ঃ
Ruby:
char = "\u{0983}"
puts char # Output: ঃ
Rust:
let c = '\u{983}';
println!("{}", c); // Output: ঃ
Go:
char := '\u0983'
fmt.Printf("%c\n", char) // Output: ঃ
CSS:
/* CSS content property */
.element::before {
content: "\000983"; /* 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%83
MD5:
b913bfc8d8f493acabf062d0924f37aa
SHA1:
b4c997f7d8261cc7ca5ee5b96bcb6568899372a4
Base64:
4KaD