Unicode Finder

"ቓ" U+1253(ETHIOPIC SYLLABLE QHAA)

U+1253
Bloknaam
Ethiopic
Naam
ETHIOPIC SYLLABLE QHAA

Programming

C
\u1253
JavaScript
\u1253
Java
\u1253
Json
\u1253
Python
\u1253
Perl
\x{1253}
PHP
\x{1253}
Ruby
\u{1253}
Rust
\u{1253}
Go
\u1253

Web

CSS
\001253
HtmlDecimal
ቓ
HtmlHexadecimal
ቓ
Url
%E1%89%93

Code

MD5
ec73058a991a355778423c1ca5136e82
Sha1
fb8c72d6c4d4fb749f67bc0f66bab217f4f8525e
Base64
4YmT

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1253';
console.log(char);  // Output: ቓ

Java:

char c = '\u1253';
System.out.println(c);  // Output: ቓ

JSON:

{"text": "\u1253"}  // Value: ቓ

Python:

char = '\u1253'
print(char)  # Output: ቓ

Perl:

my $char = "\x{1253}";
print $char;  # Output: ቓ

PHP:

$char = "\x{1253}";
echo $char;  // Output: ቓ

Ruby:

char = "\u{1253}"
puts char  # Output: ቓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001253";  /* Display: ቓ */
}

HTML Decimal:

<p>HTML decimal: &#4691;</p>  <!-- Display: ቓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1253;</p>  <!-- Display: ቓ -->

URL Encoding:

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

Encodings

MD5:

ec73058a991a355778423c1ca5136e82

SHA1:

fb8c72d6c4d4fb749f67bc0f66bab217f4f8525e

Base64:

4YmT