Unicode Finder

"᳂" U+1CC2(SUNDANESE PUNCTUATION BINDU PURNAMA)

U+1CC2
區塊名稱
Unknown Block
名稱
SUNDANESE PUNCTUATION BINDU PURNAMA

Programming

C
\u1CC2
JavaScript
\u1CC2
Java
\u1CC2
Json
\u1CC2
Python
\u1CC2
Perl
\x{1CC2}
PHP
\x{1CC2}
Ruby
\u{1CC2}
Rust
\u{1CC2}
Go
\u1CC2

Web

CSS
\001CC2
HtmlDecimal
᳂
HtmlHexadecimal
᳂
Url
%E1%B3%82

Code

MD5
13aaf17a2b5a5483ab8fec5328a88ab1
Sha1
17f8caf126799b1e9c61ec5ce5d96c6ac5bf1381
Base64
4bOC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1CC2';
console.log(char);  // Output: ᳂

Java:

char c = '\u1CC2';
System.out.println(c);  // Output: ᳂

JSON:

{"text": "\u1CC2"}  // Value: ᳂

Python:

char = '\u1CC2'
print(char)  # Output: ᳂

Perl:

my $char = "\x{1CC2}";
print $char;  # Output: ᳂

PHP:

$char = "\x{1CC2}";
echo $char;  // Output: ᳂

Ruby:

char = "\u{1CC2}"
puts char  # Output: ᳂

Rust:

let c = '\u{1CC2}';
println!("{}", c);  // Output: ᳂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001CC2";  /* Display: ᳂ */
}

HTML Decimal:

<p>HTML decimal: &#7362;</p>  <!-- Display: ᳂ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CC2;</p>  <!-- Display: ᳂ -->

URL Encoding:

// ᳂ URL encoding
https://unicodefinder.com/search.php?query=%E1%B3%82

Encodings

MD5:

13aaf17a2b5a5483ab8fec5328a88ab1

SHA1:

17f8caf126799b1e9c61ec5ce5d96c6ac5bf1381

Base64:

4bOC