Unicode Finder

"ꦘ" U+A998(JAVANESE LETTER NYA MURDA)

U+A998
ブロック名
Javanese
名前
JAVANESE LETTER NYA MURDA

Programming

C
\uA998
JavaScript
\uA998
Java
\uA998
Json
\uA998
Python
\uA998
Perl
\x{A998}
PHP
\x{A998}
Ruby
\u{A998}
Rust
\u{A998}
Go
\uA998

Web

CSS
\00A998
HtmlDecimal
ꦘ
HtmlHexadecimal
ꦘ
Url
%EA%A6%98

Code

MD5
ac461cc5b6c5c8298b2e1221b0f799e0
Sha1
4a11c7bd8eb95746d964089c5bb7ca1ee9a036db
Base64
6qaY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA998';
console.log(char);  // Output: ꦘ

Java:

char c = '\uA998';
System.out.println(c);  // Output: ꦘ

JSON:

{"text": "\uA998"}  // Value: ꦘ

Python:

char = '\uA998'
print(char)  # Output: ꦘ

Perl:

my $char = "\x{A998}";
print $char;  # Output: ꦘ

PHP:

$char = "\x{A998}";
echo $char;  // Output: ꦘ

Ruby:

char = "\u{A998}"
puts char  # Output: ꦘ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43416;</p>  <!-- Display: ꦘ -->

HTML Hexadecimal:

<p>HTML hex: &#xA998;</p>  <!-- Display: ꦘ -->

URL Encoding:

// ꦘ URL encoding
https://unicodefinder.com/search.php?query=%EA%A6%98

Encodings

MD5:

ac461cc5b6c5c8298b2e1221b0f799e0

SHA1:

4a11c7bd8eb95746d964089c5bb7ca1ee9a036db

Base64:

6qaY