Unicode Finder

"ሮ" U+122E(ETHIOPIC SYLLABLE RO)

U+122E
Nombre del Bloque
Ethiopic
Nombre
ETHIOPIC SYLLABLE RO

Programming

C
\u122E
JavaScript
\u122E
Java
\u122E
Json
\u122E
Python
\u122E
Perl
\x{122E}
PHP
\x{122E}
Ruby
\u{122E}
Rust
\u{122E}
Go
\u122E

Web

CSS
\00122E
HtmlDecimal
ሮ
HtmlHexadecimal
ሮ
Url
%E1%88%AE

Code

MD5
7426f1f8e235e4d2956065ba44dd91dd
Sha1
f1c79064cd2960f09d94e70a38b731fa4f31d374
Base64
4Yiu

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u122E';
console.log(char);  // Output: ሮ

Java:

char c = '\u122E';
System.out.println(c);  // Output: ሮ

JSON:

{"text": "\u122E"}  // Value: ሮ

Python:

char = '\u122E'
print(char)  # Output: ሮ

Perl:

my $char = "\x{122E}";
print $char;  # Output: ሮ

PHP:

$char = "\x{122E}";
echo $char;  // Output: ሮ

Ruby:

char = "\u{122E}"
puts char  # Output: ሮ

Rust:

let c = '\u{122E}';
println!("{}", c);  // Output: ሮ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00122E";  /* Display: ሮ */
}

HTML Decimal:

<p>HTML decimal: &#4654;</p>  <!-- Display: ሮ -->

HTML Hexadecimal:

<p>HTML hex: &#x122E;</p>  <!-- Display: ሮ -->

URL Encoding:

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

Encodings

MD5:

7426f1f8e235e4d2956065ba44dd91dd

SHA1:

f1c79064cd2960f09d94e70a38b731fa4f31d374

Base64:

4Yiu