Unicode Finder

"ꬳ" U+AB33(LATIN SMALL LETTER BARRED E)

U+AB33
ブロック名
Unknown Block
名前
LATIN SMALL LETTER BARRED E

Programming

C
\uAB33
JavaScript
\uAB33
Java
\uAB33
Json
\uAB33
Python
\uAB33
Perl
\x{AB33}
PHP
\x{AB33}
Ruby
\u{AB33}
Rust
\u{AB33}
Go
\uAB33

Web

CSS
\00AB33
HtmlDecimal
ꬳ
HtmlHexadecimal
ꬳ
Url
%EA%AC%B3

Code

MD5
0b942030d2c1136258ca1b7cebc79fb4
Sha1
8ef44d01c59c8f7e0e274d142964c91e4fa93f70
Base64
6qyz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB33';
console.log(char);  // Output: ꬳ

Java:

char c = '\uAB33';
System.out.println(c);  // Output: ꬳ

JSON:

{"text": "\uAB33"}  // Value: ꬳ

Python:

char = '\uAB33'
print(char)  # Output: ꬳ

Perl:

my $char = "\x{AB33}";
print $char;  # Output: ꬳ

PHP:

$char = "\x{AB33}";
echo $char;  // Output: ꬳ

Ruby:

char = "\u{AB33}"
puts char  # Output: ꬳ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43827;</p>  <!-- Display: ꬳ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB33;</p>  <!-- Display: ꬳ -->

URL Encoding:

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

Encodings

MD5:

0b942030d2c1136258ca1b7cebc79fb4

SHA1:

8ef44d01c59c8f7e0e274d142964c91e4fa93f70

Base64:

6qyz