Unicode Finder

"ꬦ" U+AB26(ETHIOPIC SYLLABLE CCHHO)

U+AB26
ブロック名
Ethiopic Extended-A
名前
ETHIOPIC SYLLABLE CCHHO

Programming

C
\uAB26
JavaScript
\uAB26
Java
\uAB26
Json
\uAB26
Python
\uAB26
Perl
\x{AB26}
PHP
\x{AB26}
Ruby
\u{AB26}
Rust
\u{AB26}
Go
\uAB26

Web

CSS
\00AB26
HtmlDecimal
ꬦ
HtmlHexadecimal
ꬦ
Url
%EA%AC%A6

Code

MD5
c091f862a64bc89a09d5b3b624f38c31
Sha1
8aaa306d4f9849b36d4953af1cad021b08cee011
Base64
6qym

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB26';
console.log(char);  // Output: ꬦ

Java:

char c = '\uAB26';
System.out.println(c);  // Output: ꬦ

JSON:

{"text": "\uAB26"}  // Value: ꬦ

Python:

char = '\uAB26'
print(char)  # Output: ꬦ

Perl:

my $char = "\x{AB26}";
print $char;  # Output: ꬦ

PHP:

$char = "\x{AB26}";
echo $char;  // Output: ꬦ

Ruby:

char = "\u{AB26}"
puts char  # Output: ꬦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00AB26";  /* Display: ꬦ */
}

HTML Decimal:

<p>HTML decimal: &#43814;</p>  <!-- Display: ꬦ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB26;</p>  <!-- Display: ꬦ -->

URL Encoding:

// ꬦ URL encoding
https://unicodefinder.com/search.php?query=%EA%AC%A6

Encodings

MD5:

c091f862a64bc89a09d5b3b624f38c31

SHA1:

8aaa306d4f9849b36d4953af1cad021b08cee011

Base64:

6qym