Unicode Finder

"ቿ" U+127F(ETHIOPIC SYLLABLE CWA)

U+127F
بلاک کا نام
Ethiopic
نام
ETHIOPIC SYLLABLE CWA

Programming

C
\u127F
JavaScript
\u127F
Java
\u127F
Json
\u127F
Python
\u127F
Perl
\x{127F}
PHP
\x{127F}
Ruby
\u{127F}
Rust
\u{127F}
Go
\u127F

Web

CSS
\00127F
HtmlDecimal
ቿ
HtmlHexadecimal
ቿ
Url
%E1%89%BF

Code

MD5
86d2eae7fe9e7516787f57b1a7fdc40c
Sha1
79a90428130a962e70252b83d11968e8be12f029
Base64
4Ym/

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u127F';
console.log(char);  // Output: ቿ

Java:

char c = '\u127F';
System.out.println(c);  // Output: ቿ

JSON:

{"text": "\u127F"}  // Value: ቿ

Python:

char = '\u127F'
print(char)  # Output: ቿ

Perl:

my $char = "\x{127F}";
print $char;  # Output: ቿ

PHP:

$char = "\x{127F}";
echo $char;  // Output: ቿ

Ruby:

char = "\u{127F}"
puts char  # Output: ቿ

Rust:

let c = '\u{127F}';
println!("{}", c);  // Output: ቿ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00127F";  /* Display: ቿ */
}

HTML Decimal:

<p>HTML decimal: &#4735;</p>  <!-- Display: ቿ -->

HTML Hexadecimal:

<p>HTML hex: &#x127F;</p>  <!-- Display: ቿ -->

URL Encoding:

// ቿ URL encoding
https://unicodefinder.com/search.php?query=%E1%89%BF

Encodings

MD5:

86d2eae7fe9e7516787f57b1a7fdc40c

SHA1:

79a90428130a962e70252b83d11968e8be12f029

Base64:

4Ym/