Unicode Finder

"ለ" U+1208(ETHIOPIC SYLLABLE LA)

U+1208
Назва Блоку
Ethiopic
Назва
ETHIOPIC SYLLABLE LA

Programming

C
\u1208
JavaScript
\u1208
Java
\u1208
Json
\u1208
Python
\u1208
Perl
\x{1208}
PHP
\x{1208}
Ruby
\u{1208}
Rust
\u{1208}
Go
\u1208

Web

CSS
\001208
HtmlDecimal
ለ
HtmlHexadecimal
ለ
Url
%E1%88%88

Code

MD5
49b37ee9170cc9872a4b52e1ae957e44
Sha1
26445daa275b64670300c2da878fd92c08e24d09
Base64
4YiI

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u1208';
console.log(char);  // Output: ለ

Java:

char c = '\u1208';
System.out.println(c);  // Output: ለ

JSON:

{"text": "\u1208"}  // Value: ለ

Python:

char = '\u1208'
print(char)  # Output: ለ

Perl:

my $char = "\x{1208}";
print $char;  # Output: ለ

PHP:

$char = "\x{1208}";
echo $char;  // Output: ለ

Ruby:

char = "\u{1208}"
puts char  # Output: ለ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001208";  /* Display: ለ */
}

HTML Decimal:

<p>HTML decimal: &#4616;</p>  <!-- Display: ለ -->

HTML Hexadecimal:

<p>HTML hex: &#x1208;</p>  <!-- Display: ለ -->

URL Encoding:

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

Encodings

MD5:

49b37ee9170cc9872a4b52e1ae957e44

SHA1:

26445daa275b64670300c2da878fd92c08e24d09

Base64:

4YiI