C:
char c = '\u1270';
printf("%c\n", c); // Output: ተ
JavaScript:
const char = '\u1270';
console.log(char); // Output: ተ
Java:
char c = '\u1270';
System.out.println(c); // Output: ተ
JSON:
{"text": "\u1270"} // Value: ተ
Python:
char = '\u1270'
print(char) # Output: ተ
Perl:
my $char = "\x{1270}";
print $char; # Output: ተ
PHP:
$char = "\x{1270}";
echo $char; // Output: ተ
Ruby:
char = "\u{1270}"
puts char # Output: ተ
Rust:
let c = '\u{1270}';
println!("{}", c); // Output: ተ
Go:
char := '\u1270'
fmt.Printf("%c\n", char) // Output: ተ
CSS:
/* CSS content property */
.element::before {
content: "\001270"; /* 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%B0
MD5:
466750c63e875155295db044e1e2b67f
SHA1:
b2069afd5ee14b289015ab864b654f77d6d574b0
Base64:
4Ymw