Unicode Finder

"ሰ" U+1230(ETHIOPIC SYLLABLE SA)

U+1230
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE SA

Programming

C
\u1230
JavaScript
\u1230
Java
\u1230
Json
\u1230
Python
\u1230
Perl
\x{1230}
PHP
\x{1230}
Ruby
\u{1230}
Rust
\u{1230}
Go
\u1230

Web

CSS
\001230
HtmlDecimal
ሰ
HtmlHexadecimal
ሰ
Url
%E1%88%B0

Code

MD5
fa2256b11918a738455328617a9a855d
Sha1
b5c9965e327abc5845509ff0eb7651f9df641d4c
Base64
4Yiw

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u1230';
console.log(char);  // Output: ሰ

Java:

char c = '\u1230';
System.out.println(c);  // Output: ሰ

JSON:

{"text": "\u1230"}  // Value: ሰ

Python:

char = '\u1230'
print(char)  # Output: ሰ

Perl:

my $char = "\x{1230}";
print $char;  # Output: ሰ

PHP:

$char = "\x{1230}";
echo $char;  // Output: ሰ

Ruby:

char = "\u{1230}"
puts char  # Output: ሰ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001230";  /* Display: ሰ */
}

HTML Decimal:

<p>HTML decimal: &#4656;</p>  <!-- Display: ሰ -->

HTML Hexadecimal:

<p>HTML hex: &#x1230;</p>  <!-- Display: ሰ -->

URL Encoding:

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

Encodings

MD5:

fa2256b11918a738455328617a9a855d

SHA1:

b5c9965e327abc5845509ff0eb7651f9df641d4c

Base64:

4Yiw