Unicode Finder

"ꙝ" U+A65D(CYRILLIC SMALL LETTER IOTIFIED CLOSED LITTLE YUS)

U+A65D
ブロック名
Cyrillic Extended-B
名前
CYRILLIC SMALL LETTER IOTIFIED CLOSED LITTLE YUS

Programming

C
\uA65D
JavaScript
\uA65D
Java
\uA65D
Json
\uA65D
Python
\uA65D
Perl
\x{A65D}
PHP
\x{A65D}
Ruby
\u{A65D}
Rust
\u{A65D}
Go
\uA65D

Web

CSS
\00A65D
HtmlDecimal
ꙝ
HtmlHexadecimal
ꙝ
Url
%EA%99%9D

Code

MD5
ee011bef686476497d471ad361f84ddb
Sha1
7cdf5701e90f0350020dac58cd3e78c5ff35c60e
Base64
6pmd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA65D';
console.log(char);  // Output: ꙝ

Java:

char c = '\uA65D';
System.out.println(c);  // Output: ꙝ

JSON:

{"text": "\uA65D"}  // Value: ꙝ

Python:

char = '\uA65D'
print(char)  # Output: ꙝ

Perl:

my $char = "\x{A65D}";
print $char;  # Output: ꙝ

PHP:

$char = "\x{A65D}";
echo $char;  // Output: ꙝ

Ruby:

char = "\u{A65D}"
puts char  # Output: ꙝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42589;</p>  <!-- Display: ꙝ -->

HTML Hexadecimal:

<p>HTML hex: &#xA65D;</p>  <!-- Display: ꙝ -->

URL Encoding:

// ꙝ URL encoding
https://unicodefinder.com/search.php?query=%EA%99%9D

Encodings

MD5:

ee011bef686476497d471ad361f84ddb

SHA1:

7cdf5701e90f0350020dac58cd3e78c5ff35c60e

Base64:

6pmd