Unicode Finder

"ቆ" U+1246(ETHIOPIC SYLLABLE QO)

U+1246
اسم الكتلة
Ethiopic
الاسم
ETHIOPIC SYLLABLE QO

Programming

C
\u1246
JavaScript
\u1246
Java
\u1246
Json
\u1246
Python
\u1246
Perl
\x{1246}
PHP
\x{1246}
Ruby
\u{1246}
Rust
\u{1246}
Go
\u1246

Web

CSS
\001246
HtmlDecimal
ቆ
HtmlHexadecimal
ቆ
Url
%E1%89%86

Code

MD5
411127769a69cdf0d449e09958e24920
Sha1
ea029af91ea1ac1ef9d704a8e0c8d2c45349162d
Base64
4YmG

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

Programming Languages

C:

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

JavaScript:

const char = '\u1246';
console.log(char);  // Output: ቆ

Java:

char c = '\u1246';
System.out.println(c);  // Output: ቆ

JSON:

{"text": "\u1246"}  // Value: ቆ

Python:

char = '\u1246'
print(char)  # Output: ቆ

Perl:

my $char = "\x{1246}";
print $char;  # Output: ቆ

PHP:

$char = "\x{1246}";
echo $char;  // Output: ቆ

Ruby:

char = "\u{1246}"
puts char  # Output: ቆ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001246";  /* Display: ቆ */
}

HTML Decimal:

<p>HTML decimal: &#4678;</p>  <!-- Display: ቆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1246;</p>  <!-- Display: ቆ -->

URL Encoding:

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

Encodings

MD5:

411127769a69cdf0d449e09958e24920

SHA1:

ea029af91ea1ac1ef9d704a8e0c8d2c45349162d

Base64:

4YmG