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