Unicode Finder

"꠫" U+A82B(SYLOTI NAGRI POETRY MARK-4)

U+A82B
ブロック名
Syloti Nagri
名前
SYLOTI NAGRI POETRY MARK-4

Programming

C
\uA82B
JavaScript
\uA82B
Java
\uA82B
Json
\uA82B
Python
\uA82B
Perl
\x{A82B}
PHP
\x{A82B}
Ruby
\u{A82B}
Rust
\u{A82B}
Go
\uA82B

Web

CSS
\00A82B
HtmlDecimal
꠫
HtmlHexadecimal
꠫
Url
%EA%A0%AB

Code

MD5
ccd7e42dc12089b1f38216f4cc045b55
Sha1
c344c19da0f133c1cf6065c5476eea3ed0d48a59
Base64
6qCr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA82B';
console.log(char);  // Output: ꠫

Java:

char c = '\uA82B';
System.out.println(c);  // Output: ꠫

JSON:

{"text": "\uA82B"}  // Value: ꠫

Python:

char = '\uA82B'
print(char)  # Output: ꠫

Perl:

my $char = "\x{A82B}";
print $char;  # Output: ꠫

PHP:

$char = "\x{A82B}";
echo $char;  // Output: ꠫

Ruby:

char = "\u{A82B}"
puts char  # Output: ꠫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43051;</p>  <!-- Display: ꠫ -->

HTML Hexadecimal:

<p>HTML hex: &#xA82B;</p>  <!-- Display: ꠫ -->

URL Encoding:

// ꠫ URL encoding
https://unicodefinder.com/search.php?query=%EA%A0%AB

Encodings

MD5:

ccd7e42dc12089b1f38216f4cc045b55

SHA1:

c344c19da0f133c1cf6065c5476eea3ed0d48a59

Base64:

6qCr