Unicode Finder

"ኃ" U+1283(ETHIOPIC SYLLABLE XAA)

U+1283
Nombre del Bloque
Ethiopic
Nombre
ETHIOPIC SYLLABLE XAA

Programming

C
\u1283
JavaScript
\u1283
Java
\u1283
Json
\u1283
Python
\u1283
Perl
\x{1283}
PHP
\x{1283}
Ruby
\u{1283}
Rust
\u{1283}
Go
\u1283

Web

CSS
\001283
HtmlDecimal
ኃ
HtmlHexadecimal
ኃ
Url
%E1%8A%83

Code

MD5
3a99206170139347ac18fd8578f01aea
Sha1
a20137099ff3aaaab3ba8f0763512020236c2caa
Base64
4YqD

Ejemplos de Uso

Programming Languages

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: ኃ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001283";  /* Display: ኃ */
}

HTML Decimal:

<p>HTML decimal: &#4739;</p>  <!-- Display: ኃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1283;</p>  <!-- Display: ኃ -->

URL Encoding:

// ኃ URL encoding
https://unicodefinder.com/search.php?query=%E1%8A%83

Encodings

MD5:

3a99206170139347ac18fd8578f01aea

SHA1:

a20137099ff3aaaab3ba8f0763512020236c2caa

Base64:

4YqD