Unicode Finder

"ꛁ" U+A6C1(BAMUM LETTER YUQ)

U+A6C1
ブロック名
Bamum
名前
BAMUM LETTER YUQ

Programming

C
\uA6C1
JavaScript
\uA6C1
Java
\uA6C1
Json
\uA6C1
Python
\uA6C1
Perl
\x{A6C1}
PHP
\x{A6C1}
Ruby
\u{A6C1}
Rust
\u{A6C1}
Go
\uA6C1

Web

CSS
\00A6C1
HtmlDecimal
ꛁ
HtmlHexadecimal
ꛁ
Url
%EA%9B%81

Code

MD5
b0921caaf7770c3d151de9c0bf756c25
Sha1
e0f902fff39ce5b6150eb79effdfdcd8d5db5227
Base64
6puB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA6C1';
console.log(char);  // Output: ꛁ

Java:

char c = '\uA6C1';
System.out.println(c);  // Output: ꛁ

JSON:

{"text": "\uA6C1"}  // Value: ꛁ

Python:

char = '\uA6C1'
print(char)  # Output: ꛁ

Perl:

my $char = "\x{A6C1}";
print $char;  # Output: ꛁ

PHP:

$char = "\x{A6C1}";
echo $char;  // Output: ꛁ

Ruby:

char = "\u{A6C1}"
puts char  # Output: ꛁ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42689;</p>  <!-- Display: ꛁ -->

HTML Hexadecimal:

<p>HTML hex: &#xA6C1;</p>  <!-- Display: ꛁ -->

URL Encoding:

// ꛁ URL encoding
https://unicodefinder.com/search.php?query=%EA%9B%81

Encodings

MD5:

b0921caaf7770c3d151de9c0bf756c25

SHA1:

e0f902fff39ce5b6150eb79effdfdcd8d5db5227

Base64:

6puB