Unicode Finder

"ረ" U+1228(ETHIOPIC SYLLABLE RA)

U+1228
اسم الكتلة
Ethiopic
الاسم
ETHIOPIC SYLLABLE RA

Programming

C
\u1228
JavaScript
\u1228
Java
\u1228
Json
\u1228
Python
\u1228
Perl
\x{1228}
PHP
\x{1228}
Ruby
\u{1228}
Rust
\u{1228}
Go
\u1228

Web

CSS
\001228
HtmlDecimal
ረ
HtmlHexadecimal
ረ
Url
%E1%88%A8

Code

MD5
a66639fa10d7475d0fdb13dbcd84ad23
Sha1
c5edf6557ccba872787830049f522e165fa88ce2
Base64
4Yio

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u1228';
console.log(char);  // Output: ረ

Java:

char c = '\u1228';
System.out.println(c);  // Output: ረ

JSON:

{"text": "\u1228"}  // Value: ረ

Python:

char = '\u1228'
print(char)  # Output: ረ

Perl:

my $char = "\x{1228}";
print $char;  # Output: ረ

PHP:

$char = "\x{1228}";
echo $char;  // Output: ረ

Ruby:

char = "\u{1228}"
puts char  # Output: ረ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001228";  /* Display: ረ */
}

HTML Decimal:

<p>HTML decimal: &#4648;</p>  <!-- Display: ረ -->

HTML Hexadecimal:

<p>HTML hex: &#x1228;</p>  <!-- Display: ረ -->

URL Encoding:

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

Encodings

MD5:

a66639fa10d7475d0fdb13dbcd84ad23

SHA1:

c5edf6557ccba872787830049f522e165fa88ce2

Base64:

4Yio