Unicode Finder

"ꬿ" U+AB3F(LATIN SMALL LETTER OPEN O WITH STROKE)

ꬿ
U+AB3F
ブロック名
Unknown Block
名前
LATIN SMALL LETTER OPEN O WITH STROKE

Programming

C
\uAB3F
JavaScript
\uAB3F
Java
\uAB3F
Json
\uAB3F
Python
\uAB3F
Perl
\x{AB3F}
PHP
\x{AB3F}
Ruby
\u{AB3F}
Rust
\u{AB3F}
Go
\uAB3F

Web

CSS
\00AB3F
HtmlDecimal
ꬿ
HtmlHexadecimal
ꬿ
Url
%EA%AC%BF

Code

MD5
2308b32c91793b937a08e05d8595d6d8
Sha1
79dc06dcb3b3c0a48da44b08389da7d69b72dcf4
Base64
6qy/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB3F';
console.log(char);  // Output: ꬿ

Java:

char c = '\uAB3F';
System.out.println(c);  // Output: ꬿ

JSON:

{"text": "\uAB3F"}  // Value: ꬿ

Python:

char = '\uAB3F'
print(char)  # Output: ꬿ

Perl:

my $char = "\x{AB3F}";
print $char;  # Output: ꬿ

PHP:

$char = "\x{AB3F}";
echo $char;  // Output: ꬿ

Ruby:

char = "\u{AB3F}"
puts char  # Output: ꬿ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43839;</p>  <!-- Display: ꬿ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB3F;</p>  <!-- Display: ꬿ -->

URL Encoding:

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

Encodings

MD5:

2308b32c91793b937a08e05d8595d6d8

SHA1:

79dc06dcb3b3c0a48da44b08389da7d69b72dcf4

Base64:

6qy/