Unicode Finder

"ꦿ" U+A9BF(JAVANESE CONSONANT SIGN CAKRA)

ꦿ
U+A9BF
ブロック名
Javanese
名前
JAVANESE CONSONANT SIGN CAKRA

Programming

C
\uA9BF
JavaScript
\uA9BF
Java
\uA9BF
Json
\uA9BF
Python
\uA9BF
Perl
\x{A9BF}
PHP
\x{A9BF}
Ruby
\u{A9BF}
Rust
\u{A9BF}
Go
\uA9BF

Web

CSS
\00A9BF
HtmlDecimal
ꦿ
HtmlHexadecimal
ꦿ
Url
%EA%A6%BF

Code

MD5
3ee5f6aa3f8656bb0f7e155df5a31726
Sha1
53eda6e066fff5060ee8b5fe34bf8b2ce3fed7d1
Base64
6qa/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA9BF';
console.log(char);  // Output: ꦿ

Java:

char c = '\uA9BF';
System.out.println(c);  // Output: ꦿ

JSON:

{"text": "\uA9BF"}  // Value: ꦿ

Python:

char = '\uA9BF'
print(char)  # Output: ꦿ

Perl:

my $char = "\x{A9BF}";
print $char;  # Output: ꦿ

PHP:

$char = "\x{A9BF}";
echo $char;  // Output: ꦿ

Ruby:

char = "\u{A9BF}"
puts char  # Output: ꦿ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43455;</p>  <!-- Display: ꦿ -->

HTML Hexadecimal:

<p>HTML hex: &#xA9BF;</p>  <!-- Display: ꦿ -->

URL Encoding:

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

Encodings

MD5:

3ee5f6aa3f8656bb0f7e155df5a31726

SHA1:

53eda6e066fff5060ee8b5fe34bf8b2ce3fed7d1

Base64:

6qa/