Unicode Finder

"ሱ" U+1231(ETHIOPIC SYLLABLE SU)

U+1231
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE SU

Programming

C
\u1231
JavaScript
\u1231
Java
\u1231
Json
\u1231
Python
\u1231
Perl
\x{1231}
PHP
\x{1231}
Ruby
\u{1231}
Rust
\u{1231}
Go
\u1231

Web

CSS
\001231
HtmlDecimal
ሱ
HtmlHexadecimal
ሱ
Url
%E1%88%B1

Code

MD5
081fa42cd01bce76b74961f82e89022f
Sha1
314190c78c3453acd52cba43970179de049c79de
Base64
4Yix

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u1231';
console.log(char);  // Output: ሱ

Java:

char c = '\u1231';
System.out.println(c);  // Output: ሱ

JSON:

{"text": "\u1231"}  // Value: ሱ

Python:

char = '\u1231'
print(char)  # Output: ሱ

Perl:

my $char = "\x{1231}";
print $char;  # Output: ሱ

PHP:

$char = "\x{1231}";
echo $char;  // Output: ሱ

Ruby:

char = "\u{1231}"
puts char  # Output: ሱ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001231";  /* Display: ሱ */
}

HTML Decimal:

<p>HTML decimal: &#4657;</p>  <!-- Display: ሱ -->

HTML Hexadecimal:

<p>HTML hex: &#x1231;</p>  <!-- Display: ሱ -->

URL Encoding:

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

Encodings

MD5:

081fa42cd01bce76b74961f82e89022f

SHA1:

314190c78c3453acd52cba43970179de049c79de

Base64:

4Yix