C:
char c = '\u0781';
printf("%c\n", c); // Output: ށ
JavaScript:
const char = '\u0781';
console.log(char); // Output: ށ
Java:
char c = '\u0781';
System.out.println(c); // Output: ށ
JSON:
{"text": "\u0781"} // Value: ށ
Python:
char = '\u0781'
print(char) # Output: ށ
Perl:
my $char = "\x{0781}";
print $char; # Output: ށ
PHP:
$char = "\x{0781}";
echo $char; // Output: ށ
Ruby:
char = "\u{0781}"
puts char # Output: ށ
Rust:
let c = '\u{781}';
println!("{}", c); // Output: ށ
Go:
char := '\u0781'
fmt.Printf("%c\n", char) // Output: ށ
CSS:
/* CSS content property */
.element::before {
content: "\000781"; /* 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=%DE%81
MD5:
16ba58ea2767426f3af377f1ef322ded
SHA1:
994d0694d7e36512446da8727017adf246647880
Base64:
3oE=