C:
char c = '\u1287';
printf("%c\n", c); // Output: ኇ
JavaScript:
const char = '\u1287';
console.log(char); // Output: ኇ
Java:
char c = '\u1287';
System.out.println(c); // Output: ኇ
JSON:
{"text": "\u1287"} // Value: ኇ
Python:
char = '\u1287'
print(char) # Output: ኇ
Perl:
my $char = "\x{1287}";
print $char; # Output: ኇ
PHP:
$char = "\x{1287}";
echo $char; // Output: ኇ
Ruby:
char = "\u{1287}"
puts char # Output: ኇ
Rust:
let c = '\u{1287}';
println!("{}", c); // Output: ኇ
Go:
char := '\u1287'
fmt.Printf("%c\n", char) // Output: ኇ
CSS:
/* CSS content property */
.element::before {
content: "\001287"; /* 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%87
MD5:
94bed24da0bcc661cff321399b9510f6
SHA1:
8124ec35d5ae1416a50fc4c7471bbca2efd62cc8
Base64:
4YqH