Unicode Finder

"᳃" U+1CC3(SUNDANESE PUNCTUATION BINDU CAKRA)

U+1CC3
區塊名稱
Unknown Block
名稱
SUNDANESE PUNCTUATION BINDU CAKRA

Programming

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

Web

CSS
\001CC3
HtmlDecimal
᳃
HtmlHexadecimal
᳃
Url
%E1%B3%83

Code

MD5
44fc044e9f17cbefefe020219d5d07d4
Sha1
17e2232a1e3ae3e6c7496863011af79dd84d716a
Base64
4bOD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1CC3';
console.log(char);  // Output: ᳃

Java:

char c = '\u1CC3';
System.out.println(c);  // Output: ᳃

JSON:

{"text": "\u1CC3"}  // Value: ᳃

Python:

char = '\u1CC3'
print(char)  # Output: ᳃

Perl:

my $char = "\x{1CC3}";
print $char;  # Output: ᳃

PHP:

$char = "\x{1CC3}";
echo $char;  // Output: ᳃

Ruby:

char = "\u{1CC3}"
puts char  # Output: ᳃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7363;</p>  <!-- Display: ᳃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1CC3;</p>  <!-- Display: ᳃ -->

URL Encoding:

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

Encodings

MD5:

44fc044e9f17cbefefe020219d5d07d4

SHA1:

17e2232a1e3ae3e6c7496863011af79dd84d716a

Base64:

4bOD