Unicode Finder

"꙱" U+A671(COMBINING CYRILLIC HUNDRED MILLIONS SIGN)

U+A671
ブロック名
Cyrillic Extended-B
名前
COMBINING CYRILLIC HUNDRED MILLIONS SIGN

Programming

C
\uA671
JavaScript
\uA671
Java
\uA671
Json
\uA671
Python
\uA671
Perl
\x{A671}
PHP
\x{A671}
Ruby
\u{A671}
Rust
\u{A671}
Go
\uA671

Web

CSS
\00A671
HtmlDecimal
꙱
HtmlHexadecimal
꙱
Url
%EA%99%B1

Code

MD5
d7a4b8efd44d94de6ead67b914a53084
Sha1
a376f422ee443b878390318b84bd085a064ce2e5
Base64
6pmx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA671';
console.log(char);  // Output: ꙱

Java:

char c = '\uA671';
System.out.println(c);  // Output: ꙱

JSON:

{"text": "\uA671"}  // Value: ꙱

Python:

char = '\uA671'
print(char)  # Output: ꙱

Perl:

my $char = "\x{A671}";
print $char;  # Output: ꙱

PHP:

$char = "\x{A671}";
echo $char;  // Output: ꙱

Ruby:

char = "\u{A671}"
puts char  # Output: ꙱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42609;</p>  <!-- Display: ꙱ -->

HTML Hexadecimal:

<p>HTML hex: &#xA671;</p>  <!-- Display: ꙱ -->

URL Encoding:

// ꙱ URL encoding
https://unicodefinder.com/search.php?query=%EA%99%B1

Encodings

MD5:

d7a4b8efd44d94de6ead67b914a53084

SHA1:

a376f422ee443b878390318b84bd085a064ce2e5

Base64:

6pmx