C:
char c = '\u1229';
printf("%c\n", c); // Output: ሩ
JavaScript:
const char = '\u1229';
console.log(char); // Output: ሩ
Java:
char c = '\u1229';
System.out.println(c); // Output: ሩ
JSON:
{"text": "\u1229"} // Value: ሩ
Python:
char = '\u1229'
print(char) # Output: ሩ
Perl:
my $char = "\x{1229}";
print $char; # Output: ሩ
PHP:
$char = "\x{1229}";
echo $char; // Output: ሩ
Ruby:
char = "\u{1229}"
puts char # Output: ሩ
Rust:
let c = '\u{1229}';
println!("{}", c); // Output: ሩ
Go:
char := '\u1229'
fmt.Printf("%c\n", char) // Output: ሩ
CSS:
/* CSS content property */
.element::before {
content: "\001229"; /* 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%88%A9
MD5:
e1b7cde10e23ac506e43d8e30ced91b9
SHA1:
1ab0a9a62817cee228bfec3f414d24abbf08c691
Base64:
4Yip