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