Unicode Finder

"ቇ" U+1247(ETHIOPIC SYLLABLE QOA)

U+1247
اسم الكتلة
Ethiopic
الاسم
ETHIOPIC SYLLABLE QOA

Programming

C
\u1247
JavaScript
\u1247
Java
\u1247
Json
\u1247
Python
\u1247
Perl
\x{1247}
PHP
\x{1247}
Ruby
\u{1247}
Rust
\u{1247}
Go
\u1247

Web

CSS
\001247
HtmlDecimal
ቇ
HtmlHexadecimal
ቇ
Url
%E1%89%87

Code

MD5
069d2eee9bd62ae9c0fe5a714372e456
Sha1
62a2d167d462637e7106cd1a7ba4b46eff003275
Base64
4YmH

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

Programming Languages

C:

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

JavaScript:

const char = '\u1247';
console.log(char);  // Output: ቇ

Java:

char c = '\u1247';
System.out.println(c);  // Output: ቇ

JSON:

{"text": "\u1247"}  // Value: ቇ

Python:

char = '\u1247'
print(char)  # Output: ቇ

Perl:

my $char = "\x{1247}";
print $char;  # Output: ቇ

PHP:

$char = "\x{1247}";
echo $char;  // Output: ቇ

Ruby:

char = "\u{1247}"
puts char  # Output: ቇ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001247";  /* Display: ቇ */
}

HTML Decimal:

<p>HTML decimal: &#4679;</p>  <!-- Display: ቇ -->

HTML Hexadecimal:

<p>HTML hex: &#x1247;</p>  <!-- Display: ቇ -->

URL Encoding:

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

Encodings

MD5:

069d2eee9bd62ae9c0fe5a714372e456

SHA1:

62a2d167d462637e7106cd1a7ba4b46eff003275

Base64:

4YmH