Unicode Finder

"ꜻ" U+A73B(LATIN SMALL LETTER AV WITH HORIZONTAL BAR)

U+A73B
ブロック名
Latin Extended-D
名前
LATIN SMALL LETTER AV WITH HORIZONTAL BAR

Programming

C
\uA73B
JavaScript
\uA73B
Java
\uA73B
Json
\uA73B
Python
\uA73B
Perl
\x{A73B}
PHP
\x{A73B}
Ruby
\u{A73B}
Rust
\u{A73B}
Go
\uA73B

Web

CSS
\00A73B
HtmlDecimal
ꜻ
HtmlHexadecimal
ꜻ
Url
%EA%9C%BB

Code

MD5
1df5c64be0e29a3f3a07500263c3d354
Sha1
f298976a49c55e655a2c72bb33061decd9f8be5e
Base64
6py7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA73B';
console.log(char);  // Output: ꜻ

Java:

char c = '\uA73B';
System.out.println(c);  // Output: ꜻ

JSON:

{"text": "\uA73B"}  // Value: ꜻ

Python:

char = '\uA73B'
print(char)  # Output: ꜻ

Perl:

my $char = "\x{A73B}";
print $char;  # Output: ꜻ

PHP:

$char = "\x{A73B}";
echo $char;  // Output: ꜻ

Ruby:

char = "\u{A73B}"
puts char  # Output: ꜻ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42811;</p>  <!-- Display: ꜻ -->

HTML Hexadecimal:

<p>HTML hex: &#xA73B;</p>  <!-- Display: ꜻ -->

URL Encoding:

// ꜻ URL encoding
https://unicodefinder.com/search.php?query=%EA%9C%BB

Encodings

MD5:

1df5c64be0e29a3f3a07500263c3d354

SHA1:

f298976a49c55e655a2c72bb33061decd9f8be5e

Base64:

6py7