Unicode Finder

"ꬰ" U+AB30(LATIN SMALL LETTER BARRED ALPHA)

U+AB30
區塊名稱
Unknown Block
名稱
LATIN SMALL LETTER BARRED ALPHA

Programming

C
\uAB30
JavaScript
\uAB30
Java
\uAB30
Json
\uAB30
Python
\uAB30
Perl
\x{AB30}
PHP
\x{AB30}
Ruby
\u{AB30}
Rust
\u{AB30}
Go
\uAB30

Web

CSS
\00AB30
HtmlDecimal
ꬰ
HtmlHexadecimal
ꬰ
Url
%EA%AC%B0

Code

MD5
1e6fbe3a64afadd75c8cee73aa28f2d6
Sha1
faaadd11930fe98fa84823198c1fe4d6aa834bfc
Base64
6qyw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uAB30';
console.log(char);  // Output: ꬰ

Java:

char c = '\uAB30';
System.out.println(c);  // Output: ꬰ

JSON:

{"text": "\uAB30"}  // Value: ꬰ

Python:

char = '\uAB30'
print(char)  # Output: ꬰ

Perl:

my $char = "\x{AB30}";
print $char;  # Output: ꬰ

PHP:

$char = "\x{AB30}";
echo $char;  // Output: ꬰ

Ruby:

char = "\u{AB30}"
puts char  # Output: ꬰ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43824;</p>  <!-- Display: ꬰ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB30;</p>  <!-- Display: ꬰ -->

URL Encoding:

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

Encodings

MD5:

1e6fbe3a64afadd75c8cee73aa28f2d6

SHA1:

faaadd11930fe98fa84823198c1fe4d6aa834bfc

Base64:

6qyw