C:
char c = '\u1283';
printf("%c\n", c); // Output: ኃ
JavaScript:
const char = '\u1283';
console.log(char); // Output: ኃ
Java:
char c = '\u1283';
System.out.println(c); // Output: ኃ
JSON:
{"text": "\u1283"} // Value: ኃ
Python:
char = '\u1283'
print(char) # Output: ኃ
Perl:
my $char = "\x{1283}";
print $char; # Output: ኃ
PHP:
$char = "\x{1283}";
echo $char; // Output: ኃ
Ruby:
char = "\u{1283}"
puts char # Output: ኃ
Rust:
let c = '\u{1283}';
println!("{}", c); // Output: ኃ
Go:
char := '\u1283'
fmt.Printf("%c\n", char) // Output: ኃ
CSS:
/* CSS content property */
.element::before {
content: "\001283"; /* 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%8A%83
MD5:
3a99206170139347ac18fd8578f01aea
SHA1:
a20137099ff3aaaab3ba8f0763512020236c2caa
Base64:
4YqD