Unicode Finder

"ሹ" U+1239(ETHIOPIC SYLLABLE SHU)

U+1239
Block Name
Ethiopic
Name
ETHIOPIC SYLLABLE SHU

Programming

C
\u1239
JavaScript
\u1239
Java
\u1239
Json
\u1239
Python
\u1239
Perl
\x{1239}
PHP
\x{1239}
Ruby
\u{1239}
Rust
\u{1239}
Go
\u1239

Web

CSS
\001239
HtmlDecimal
ሹ
HtmlHexadecimal
ሹ
Url
%E1%88%B9

Code

MD5
523e1a838cc6e5fbc1335ec3835aef3d
Sha1
7fd2a262de338dca0114d0bed8df29d42357838a
Base64
4Yi5

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1239';
console.log(char);  // Output: ሹ

Java:

char c = '\u1239';
System.out.println(c);  // Output: ሹ

JSON:

{"text": "\u1239"}  // Value: ሹ

Python:

char = '\u1239'
print(char)  # Output: ሹ

Perl:

my $char = "\x{1239}";
print $char;  # Output: ሹ

PHP:

$char = "\x{1239}";
echo $char;  // Output: ሹ

Ruby:

char = "\u{1239}"
puts char  # Output: ሹ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001239";  /* Display: ሹ */
}

HTML Decimal:

<p>HTML decimal: &#4665;</p>  <!-- Display: ሹ -->

HTML Hexadecimal:

<p>HTML hex: &#x1239;</p>  <!-- Display: ሹ -->

URL Encoding:

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

Encodings

MD5:

523e1a838cc6e5fbc1335ec3835aef3d

SHA1:

7fd2a262de338dca0114d0bed8df29d42357838a

Base64:

4Yi5