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