Unicode Finder

"Ꜽ" U+A73C(LATIN CAPITAL LETTER AY)

U+A73C
ブロック名
Latin Extended-D
名前
LATIN CAPITAL LETTER AY

Programming

C
\uA73C
JavaScript
\uA73C
Java
\uA73C
Json
\uA73C
Python
\uA73C
Perl
\x{A73C}
PHP
\x{A73C}
Ruby
\u{A73C}
Rust
\u{A73C}
Go
\uA73C

Web

CSS
\00A73C
HtmlDecimal
Ꜽ
HtmlHexadecimal
Ꜽ
Url
%EA%9C%BC

Code

MD5
27af90c559c58be11964018a5f0008d6
Sha1
8f16e012136444b98c428ee1f9ba8e6e697ae19b
Base64
6py8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA73C';
console.log(char);  // Output: Ꜽ

Java:

char c = '\uA73C';
System.out.println(c);  // Output: Ꜽ

JSON:

{"text": "\uA73C"}  // Value: Ꜽ

Python:

char = '\uA73C'
print(char)  # Output: Ꜽ

Perl:

my $char = "\x{A73C}";
print $char;  # Output: Ꜽ

PHP:

$char = "\x{A73C}";
echo $char;  // Output: Ꜽ

Ruby:

char = "\u{A73C}"
puts char  # Output: Ꜽ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42812;</p>  <!-- Display: Ꜽ -->

HTML Hexadecimal:

<p>HTML hex: &#xA73C;</p>  <!-- Display: Ꜽ -->

URL Encoding:

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

Encodings

MD5:

27af90c559c58be11964018a5f0008d6

SHA1:

8f16e012136444b98c428ee1f9ba8e6e697ae19b

Base64:

6py8