Unicode Finder

"꣒" U+A8D2(SAURASHTRA DIGIT TWO)

U+A8D2
ブロック名
Saurashtra
名前
SAURASHTRA DIGIT TWO

Programming

C
\uA8D2
JavaScript
\uA8D2
Java
\uA8D2
Json
\uA8D2
Python
\uA8D2
Perl
\x{A8D2}
PHP
\x{A8D2}
Ruby
\u{A8D2}
Rust
\u{A8D2}
Go
\uA8D2

Web

CSS
\00A8D2
HtmlDecimal
꣒
HtmlHexadecimal
꣒
Url
%EA%A3%92

Code

MD5
d504092aaa239f89ef4b4000985a63ec
Sha1
25ec16ee755516f5a179d5c4cd27022b108f71fb
Base64
6qOS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA8D2';
console.log(char);  // Output: ꣒

Java:

char c = '\uA8D2';
System.out.println(c);  // Output: ꣒

JSON:

{"text": "\uA8D2"}  // Value: ꣒

Python:

char = '\uA8D2'
print(char)  # Output: ꣒

Perl:

my $char = "\x{A8D2}";
print $char;  # Output: ꣒

PHP:

$char = "\x{A8D2}";
echo $char;  // Output: ꣒

Ruby:

char = "\u{A8D2}"
puts char  # Output: ꣒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43218;</p>  <!-- Display: ꣒ -->

HTML Hexadecimal:

<p>HTML hex: &#xA8D2;</p>  <!-- Display: ꣒ -->

URL Encoding:

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

Encodings

MD5:

d504092aaa239f89ef4b4000985a63ec

SHA1:

25ec16ee755516f5a179d5c4cd27022b108f71fb

Base64:

6qOS