C:
char c = '\u1271';
printf("%c\n", c); // Output: ቱ
JavaScript:
const char = '\u1271';
console.log(char); // Output: ቱ
Java:
char c = '\u1271';
System.out.println(c); // Output: ቱ
JSON:
{"text": "\u1271"} // Value: ቱ
Python:
char = '\u1271'
print(char) # Output: ቱ
Perl:
my $char = "\x{1271}";
print $char; # Output: ቱ
PHP:
$char = "\x{1271}";
echo $char; // Output: ቱ
Ruby:
char = "\u{1271}"
puts char # Output: ቱ
Rust:
let c = '\u{1271}';
println!("{}", c); // Output: ቱ
Go:
char := '\u1271'
fmt.Printf("%c\n", char) // Output: ቱ
CSS:
/* CSS content property */
.element::before {
content: "\001271"; /* 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%B1
MD5:
a3920f6d906bf15a16dcc6114df2c526
SHA1:
bee65a3ab47e9293bff7682cd2e4696317a72a4f
Base64:
4Ymx