Unicode Finder

"ꚋ" U+A68B(CYRILLIC SMALL LETTER TE WITH MIDDLE HOOK)

U+A68B
ブロック名
Cyrillic Extended-B
名前
CYRILLIC SMALL LETTER TE WITH MIDDLE HOOK

Programming

C
\uA68B
JavaScript
\uA68B
Java
\uA68B
Json
\uA68B
Python
\uA68B
Perl
\x{A68B}
PHP
\x{A68B}
Ruby
\u{A68B}
Rust
\u{A68B}
Go
\uA68B

Web

CSS
\00A68B
HtmlDecimal
ꚋ
HtmlHexadecimal
ꚋ
Url
%EA%9A%8B

Code

MD5
2ac91432b0e563c29aaf287e47fe1626
Sha1
4d8d48dfa7e1a5edbcfc28e83838e429738be29a
Base64
6pqL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA68B';
console.log(char);  // Output: ꚋ

Java:

char c = '\uA68B';
System.out.println(c);  // Output: ꚋ

JSON:

{"text": "\uA68B"}  // Value: ꚋ

Python:

char = '\uA68B'
print(char)  # Output: ꚋ

Perl:

my $char = "\x{A68B}";
print $char;  # Output: ꚋ

PHP:

$char = "\x{A68B}";
echo $char;  // Output: ꚋ

Ruby:

char = "\u{A68B}"
puts char  # Output: ꚋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42635;</p>  <!-- Display: ꚋ -->

HTML Hexadecimal:

<p>HTML hex: &#xA68B;</p>  <!-- Display: ꚋ -->

URL Encoding:

// ꚋ URL encoding
https://unicodefinder.com/search.php?query=%EA%9A%8B

Encodings

MD5:

2ac91432b0e563c29aaf287e47fe1626

SHA1:

4d8d48dfa7e1a5edbcfc28e83838e429738be29a

Base64:

6pqL