Unicode Finder

"ꬨ" U+AB28(ETHIOPIC SYLLABLE BBA)

U+AB28
ブロック名
Ethiopic Extended-A
名前
ETHIOPIC SYLLABLE BBA

Programming

C
\uAB28
JavaScript
\uAB28
Java
\uAB28
Json
\uAB28
Python
\uAB28
Perl
\x{AB28}
PHP
\x{AB28}
Ruby
\u{AB28}
Rust
\u{AB28}
Go
\uAB28

Web

CSS
\00AB28
HtmlDecimal
ꬨ
HtmlHexadecimal
ꬨ
Url
%EA%AC%A8

Code

MD5
b030815d64a7a447eedee0ae4be0e685
Sha1
e6327196e86c9465b502f2d435c0c01f3d26c357
Base64
6qyo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB28';
console.log(char);  // Output: ꬨ

Java:

char c = '\uAB28';
System.out.println(c);  // Output: ꬨ

JSON:

{"text": "\uAB28"}  // Value: ꬨ

Python:

char = '\uAB28'
print(char)  # Output: ꬨ

Perl:

my $char = "\x{AB28}";
print $char;  # Output: ꬨ

PHP:

$char = "\x{AB28}";
echo $char;  // Output: ꬨ

Ruby:

char = "\u{AB28}"
puts char  # Output: ꬨ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43816;</p>  <!-- Display: ꬨ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB28;</p>  <!-- Display: ꬨ -->

URL Encoding:

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

Encodings

MD5:

b030815d64a7a447eedee0ae4be0e685

SHA1:

e6327196e86c9465b502f2d435c0c01f3d26c357

Base64:

6qyo