Unicode Finder

"꣡" U+A8E1(COMBINING DEVANAGARI DIGIT ONE)

U+A8E1
ブロック名
Devanagari Extended
名前
COMBINING DEVANAGARI DIGIT ONE

Programming

C
\uA8E1
JavaScript
\uA8E1
Java
\uA8E1
Json
\uA8E1
Python
\uA8E1
Perl
\x{A8E1}
PHP
\x{A8E1}
Ruby
\u{A8E1}
Rust
\u{A8E1}
Go
\uA8E1

Web

CSS
\00A8E1
HtmlDecimal
꣡
HtmlHexadecimal
꣡
Url
%EA%A3%A1

Code

MD5
aba9dc2db6a4178f347ce313d8369940
Sha1
3e41d44533b32e3b9833a7c13e484aa97d476acf
Base64
6qOh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA8E1';
console.log(char);  // Output: ꣡

Java:

char c = '\uA8E1';
System.out.println(c);  // Output: ꣡

JSON:

{"text": "\uA8E1"}  // Value: ꣡

Python:

char = '\uA8E1'
print(char)  # Output: ꣡

Perl:

my $char = "\x{A8E1}";
print $char;  # Output: ꣡

PHP:

$char = "\x{A8E1}";
echo $char;  // Output: ꣡

Ruby:

char = "\u{A8E1}"
puts char  # Output: ꣡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43233;</p>  <!-- Display: ꣡ -->

HTML Hexadecimal:

<p>HTML hex: &#xA8E1;</p>  <!-- Display: ꣡ -->

URL Encoding:

// ꣡ URL encoding
https://unicodefinder.com/search.php?query=%EA%A3%A1

Encodings

MD5:

aba9dc2db6a4178f347ce313d8369940

SHA1:

3e41d44533b32e3b9833a7c13e484aa97d476acf

Base64:

6qOh