Unicode Finder

"ꭂ" U+AB42(LATIN SMALL LETTER TURNED OE WITH HORIZONTAL STROKE)

U+AB42
ブロック名
Unknown Block
名前
LATIN SMALL LETTER TURNED OE WITH HORIZONTAL STROKE

Programming

C
\uAB42
JavaScript
\uAB42
Java
\uAB42
Json
\uAB42
Python
\uAB42
Perl
\x{AB42}
PHP
\x{AB42}
Ruby
\u{AB42}
Rust
\u{AB42}
Go
\uAB42

Web

CSS
\00AB42
HtmlDecimal
ꭂ
HtmlHexadecimal
ꭂ
Url
%EA%AD%82

Code

MD5
c86811da5d8290420ee1d3ff44ee6e16
Sha1
bce1ea897aa2b509359a3efd5a79a5a79d0aa0c2
Base64
6q2C

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB42';
console.log(char);  // Output: ꭂ

Java:

char c = '\uAB42';
System.out.println(c);  // Output: ꭂ

JSON:

{"text": "\uAB42"}  // Value: ꭂ

Python:

char = '\uAB42'
print(char)  # Output: ꭂ

Perl:

my $char = "\x{AB42}";
print $char;  # Output: ꭂ

PHP:

$char = "\x{AB42}";
echo $char;  // Output: ꭂ

Ruby:

char = "\u{AB42}"
puts char  # Output: ꭂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43842;</p>  <!-- Display: ꭂ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB42;</p>  <!-- Display: ꭂ -->

URL Encoding:

// ꭂ URL encoding
https://unicodefinder.com/search.php?query=%EA%AD%82

Encodings

MD5:

c86811da5d8290420ee1d3ff44ee6e16

SHA1:

bce1ea897aa2b509359a3efd5a79a5a79d0aa0c2

Base64:

6q2C