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