Unicode Finder

"ኋ" U+128B(ETHIOPIC SYLLABLE XWAA)

U+128B
שם בלוק
Ethiopic
שם
ETHIOPIC SYLLABLE XWAA

Programming

C
\u128B
JavaScript
\u128B
Java
\u128B
Json
\u128B
Python
\u128B
Perl
\x{128B}
PHP
\x{128B}
Ruby
\u{128B}
Rust
\u{128B}
Go
\u128B

Web

CSS
\00128B
HtmlDecimal
ኋ
HtmlHexadecimal
ኋ
Url
%E1%8A%8B

Code

MD5
99c176f05a60c74fc1564db8262e5009
Sha1
dd2de741125cd1d0bbe9e268c9f440ed75f74a79
Base64
4YqL

דוגמאות שימוש

Programming Languages

C:

char c = '\u128B';
printf("%c\n", c);  // Output: ኋ

JavaScript:

const char = '\u128B';
console.log(char);  // Output: ኋ

Java:

char c = '\u128B';
System.out.println(c);  // Output: ኋ

JSON:

{"text": "\u128B"}  // Value: ኋ

Python:

char = '\u128B'
print(char)  # Output: ኋ

Perl:

my $char = "\x{128B}";
print $char;  # Output: ኋ

PHP:

$char = "\x{128B}";
echo $char;  // Output: ኋ

Ruby:

char = "\u{128B}"
puts char  # Output: ኋ

Rust:

let c = '\u{128B}';
println!("{}", c);  // Output: ኋ

Go:

char := '\u128B'
fmt.Printf("%c\n", char)  // Output: ኋ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00128B";  /* Display: ኋ */
}

HTML Decimal:

<p>HTML decimal: &#4747;</p>  <!-- Display: ኋ -->

HTML Hexadecimal:

<p>HTML hex: &#x128B;</p>  <!-- Display: ኋ -->

URL Encoding:

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

Encodings

MD5:

99c176f05a60c74fc1564db8262e5009

SHA1:

dd2de741125cd1d0bbe9e268c9f440ed75f74a79

Base64:

4YqL