Unicode Finder

"ቝ" U+125D(ETHIOPIC SYLLABLE QHWE)

U+125D
Nume Bloc
Ethiopic
Nume
ETHIOPIC SYLLABLE QHWE

Programming

C
\u125D
JavaScript
\u125D
Java
\u125D
Json
\u125D
Python
\u125D
Perl
\x{125D}
PHP
\x{125D}
Ruby
\u{125D}
Rust
\u{125D}
Go
\u125D

Web

CSS
\00125D
HtmlDecimal
ቝ
HtmlHexadecimal
ቝ
Url
%E1%89%9D

Code

MD5
c74f0ec96b64337c8c0673f24ab9fc75
Sha1
9930aa9bbaf9af7504b4296229719ef208673e84
Base64
4Ymd

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u125D';
console.log(char);  // Output: ቝ

Java:

char c = '\u125D';
System.out.println(c);  // Output: ቝ

JSON:

{"text": "\u125D"}  // Value: ቝ

Python:

char = '\u125D'
print(char)  # Output: ቝ

Perl:

my $char = "\x{125D}";
print $char;  # Output: ቝ

PHP:

$char = "\x{125D}";
echo $char;  // Output: ቝ

Ruby:

char = "\u{125D}"
puts char  # Output: ቝ

Rust:

let c = '\u{125D}';
println!("{}", c);  // Output: ቝ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00125D";  /* Display: ቝ */
}

HTML Decimal:

<p>HTML decimal: &#4701;</p>  <!-- Display: ቝ -->

HTML Hexadecimal:

<p>HTML hex: &#x125D;</p>  <!-- Display: ቝ -->

URL Encoding:

// ቝ URL encoding
https://unicodefinder.com/search.php?query=%E1%89%9D

Encodings

MD5:

c74f0ec96b64337c8c0673f24ab9fc75

SHA1:

9930aa9bbaf9af7504b4296229719ef208673e84

Base64:

4Ymd