Unicode Finder

"ꙋ" U+A64B(CYRILLIC SMALL LETTER MONOGRAPH UK)

U+A64B
ブロック名
Cyrillic Extended-B
名前
CYRILLIC SMALL LETTER MONOGRAPH UK

Programming

C
\uA64B
JavaScript
\uA64B
Java
\uA64B
Json
\uA64B
Python
\uA64B
Perl
\x{A64B}
PHP
\x{A64B}
Ruby
\u{A64B}
Rust
\u{A64B}
Go
\uA64B

Web

CSS
\00A64B
HtmlDecimal
ꙋ
HtmlHexadecimal
ꙋ
Url
%EA%99%8B

Code

MD5
a84dfe402e2053896b6674903d00d8e5
Sha1
d85bd6fde9e7c1e0636570648293ccee8410c865
Base64
6pmL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA64B';
console.log(char);  // Output: ꙋ

Java:

char c = '\uA64B';
System.out.println(c);  // Output: ꙋ

JSON:

{"text": "\uA64B"}  // Value: ꙋ

Python:

char = '\uA64B'
print(char)  # Output: ꙋ

Perl:

my $char = "\x{A64B}";
print $char;  # Output: ꙋ

PHP:

$char = "\x{A64B}";
echo $char;  // Output: ꙋ

Ruby:

char = "\u{A64B}"
puts char  # Output: ꙋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42571;</p>  <!-- Display: ꙋ -->

HTML Hexadecimal:

<p>HTML hex: &#xA64B;</p>  <!-- Display: ꙋ -->

URL Encoding:

// ꙋ URL encoding
https://unicodefinder.com/search.php?query=%EA%99%8B

Encodings

MD5:

a84dfe402e2053896b6674903d00d8e5

SHA1:

d85bd6fde9e7c1e0636570648293ccee8410c865

Base64:

6pmL