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