Unicode Finder

"ካ" U+12AB(ETHIOPIC SYLLABLE KAA)

U+12AB
Blockname
Ethiopic
Name
ETHIOPIC SYLLABLE KAA

Programming

C
\u12AB
JavaScript
\u12AB
Java
\u12AB
Json
\u12AB
Python
\u12AB
Perl
\x{12AB}
PHP
\x{12AB}
Ruby
\u{12AB}
Rust
\u{12AB}
Go
\u12AB

Web

CSS
\0012AB
HtmlDecimal
ካ
HtmlHexadecimal
ካ
Url
%E1%8A%AB

Code

MD5
3de767a15071ccbff86857fae81a707c
Sha1
2da2846c5adc32343d9a88827c8e376615ab086b
Base64
4Yqr

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u12AB';
console.log(char);  // Output: ካ

Java:

char c = '\u12AB';
System.out.println(c);  // Output: ካ

JSON:

{"text": "\u12AB"}  // Value: ካ

Python:

char = '\u12AB'
print(char)  # Output: ካ

Perl:

my $char = "\x{12AB}";
print $char;  # Output: ካ

PHP:

$char = "\x{12AB}";
echo $char;  // Output: ካ

Ruby:

char = "\u{12AB}"
puts char  # Output: ካ

Rust:

let c = '\u{12AB}';
println!("{}", c);  // Output: ካ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0012AB";  /* Display: ካ */
}

HTML Decimal:

<p>HTML decimal: &#4779;</p>  <!-- Display: ካ -->

HTML Hexadecimal:

<p>HTML hex: &#x12AB;</p>  <!-- Display: ካ -->

URL Encoding:

// ካ URL encoding
https://unicodefinder.com/search.php?query=%E1%8A%AB

Encodings

MD5:

3de767a15071ccbff86857fae81a707c

SHA1:

2da2846c5adc32343d9a88827c8e376615ab086b

Base64:

4Yqr