C:
char c = '\u1273';
printf("%c\n", c); // Output: ታ
JavaScript:
const char = '\u1273';
console.log(char); // Output: ታ
Java:
char c = '\u1273';
System.out.println(c); // Output: ታ
JSON:
{"text": "\u1273"} // Value: ታ
Python:
char = '\u1273'
print(char) # Output: ታ
Perl:
my $char = "\x{1273}";
print $char; # Output: ታ
PHP:
$char = "\x{1273}";
echo $char; // Output: ታ
Ruby:
char = "\u{1273}"
puts char # Output: ታ
Rust:
let c = '\u{1273}';
println!("{}", c); // Output: ታ
Go:
char := '\u1273'
fmt.Printf("%c\n", char) // Output: ታ
CSS:
/* CSS content property */
.element::before {
content: "\001273"; /* 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=%E1%89%B3
MD5:
a5d45735fddf8be57746fc660dc4d25b
SHA1:
b2747b3477ca26374962df34efbd0d1be96d0d35
Base64:
4Ymz