Unicode Finder

"ሩ" U+1229(ETHIOPIC SYLLABLE RU)

U+1229
Nom du Bloc
Ethiopic
Nom
ETHIOPIC SYLLABLE RU

Programming

C
\u1229
JavaScript
\u1229
Java
\u1229
Json
\u1229
Python
\u1229
Perl
\x{1229}
PHP
\x{1229}
Ruby
\u{1229}
Rust
\u{1229}
Go
\u1229

Web

CSS
\001229
HtmlDecimal
ሩ
HtmlHexadecimal
ሩ
Url
%E1%88%A9

Code

MD5
e1b7cde10e23ac506e43d8e30ced91b9
Sha1
1ab0a9a62817cee228bfec3f414d24abbf08c691
Base64
4Yip

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u1229';
console.log(char);  // Output: ሩ

Java:

char c = '\u1229';
System.out.println(c);  // Output: ሩ

JSON:

{"text": "\u1229"}  // Value: ሩ

Python:

char = '\u1229'
print(char)  # Output: ሩ

Perl:

my $char = "\x{1229}";
print $char;  # Output: ሩ

PHP:

$char = "\x{1229}";
echo $char;  // Output: ሩ

Ruby:

char = "\u{1229}"
puts char  # Output: ሩ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001229";  /* Display: ሩ */
}

HTML Decimal:

<p>HTML decimal: &#4649;</p>  <!-- Display: ሩ -->

HTML Hexadecimal:

<p>HTML hex: &#x1229;</p>  <!-- Display: ሩ -->

URL Encoding:

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

Encodings

MD5:

e1b7cde10e23ac506e43d8e30ced91b9

SHA1:

1ab0a9a62817cee228bfec3f414d24abbf08c691

Base64:

4Yip