Unicode Finder

"ᎈ" U+1388(ETHIOPIC SYLLABLE SEBATBEIT FWA)

U+1388
Название Блока
Ethiopic Supplement
Название
ETHIOPIC SYLLABLE SEBATBEIT FWA

Programming

C
\u1388
JavaScript
\u1388
Java
\u1388
Json
\u1388
Python
\u1388
Perl
\x{1388}
PHP
\x{1388}
Ruby
\u{1388}
Rust
\u{1388}
Go
\u1388

Web

CSS
\001388
HtmlDecimal
ᎈ
HtmlHexadecimal
ᎈ
Url
%E1%8E%88

Code

MD5
f801d0d63226a26ca57a60281850523b
Sha1
c980368abf429ff0a35430fcc40bf9cf1bff38b7
Base64
4Y6I

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1388';
console.log(char);  // Output: ᎈ

Java:

char c = '\u1388';
System.out.println(c);  // Output: ᎈ

JSON:

{"text": "\u1388"}  // Value: ᎈ

Python:

char = '\u1388'
print(char)  # Output: ᎈ

Perl:

my $char = "\x{1388}";
print $char;  # Output: ᎈ

PHP:

$char = "\x{1388}";
echo $char;  // Output: ᎈ

Ruby:

char = "\u{1388}"
puts char  # Output: ᎈ

Rust:

let c = '\u{1388}';
println!("{}", c);  // Output: ᎈ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001388";  /* Display: ᎈ */
}

HTML Decimal:

<p>HTML decimal: &#5000;</p>  <!-- Display: ᎈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1388;</p>  <!-- Display: ᎈ -->

URL Encoding:

// ᎈ URL encoding
https://unicodefinder.com/search.php?query=%E1%8E%88

Encodings

MD5:

f801d0d63226a26ca57a60281850523b

SHA1:

c980368abf429ff0a35430fcc40bf9cf1bff38b7

Base64:

4Y6I