Unicode Finder

"Ɜ" U+A7AB(LATIN CAPITAL LETTER REVERSED OPEN E)

U+A7AB
ブロック名
Latin Extended-D
名前
LATIN CAPITAL LETTER REVERSED OPEN E

Programming

C
\uA7AB
JavaScript
\uA7AB
Java
\uA7AB
Json
\uA7AB
Python
\uA7AB
Perl
\x{A7AB}
PHP
\x{A7AB}
Ruby
\u{A7AB}
Rust
\u{A7AB}
Go
\uA7AB

Web

CSS
\00A7AB
HtmlDecimal
Ɜ
HtmlHexadecimal
Ɜ
Url
%EA%9E%AB

Code

MD5
c0dbf8c9434bfde7cd7d81ff14fd9b4b
Sha1
ca8858909e59d59ae250e245435e3d88233fd58e
Base64
6p6r

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA7AB';
console.log(char);  // Output: Ɜ

Java:

char c = '\uA7AB';
System.out.println(c);  // Output: Ɜ

JSON:

{"text": "\uA7AB"}  // Value: Ɜ

Python:

char = '\uA7AB'
print(char)  # Output: Ɜ

Perl:

my $char = "\x{A7AB}";
print $char;  # Output: Ɜ

PHP:

$char = "\x{A7AB}";
echo $char;  // Output: Ɜ

Ruby:

char = "\u{A7AB}"
puts char  # Output: Ɜ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42923;</p>  <!-- Display: Ɜ -->

HTML Hexadecimal:

<p>HTML hex: &#xA7AB;</p>  <!-- Display: Ɜ -->

URL Encoding:

// Ɜ URL encoding
https://unicodefinder.com/search.php?query=%EA%9E%AB

Encodings

MD5:

c0dbf8c9434bfde7cd7d81ff14fd9b4b

SHA1:

ca8858909e59d59ae250e245435e3d88233fd58e

Base64:

6p6r