Unicode Finder

"᱿" U+1C7F(OL CHIKI PUNCTUATION DOUBLE MUCAAD)

᱿
U+1C7F
Nazwa Bloku
Ol Chiki
Nazwa
OL CHIKI PUNCTUATION DOUBLE MUCAAD

Programming

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

Web

CSS
\001C7F
HtmlDecimal
᱿
HtmlHexadecimal
᱿
Url
%E1%B1%BF

Code

MD5
2d0828bb7e32d33fe850e73b04602bf5
Sha1
097cb402c38d63357a22f7b0b3338956318dc6dd
Base64
4bG/

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1C7F';
console.log(char);  // Output: ᱿

Java:

char c = '\u1C7F';
System.out.println(c);  // Output: ᱿

JSON:

{"text": "\u1C7F"}  // Value: ᱿

Python:

char = '\u1C7F'
print(char)  # Output: ᱿

Perl:

my $char = "\x{1C7F}";
print $char;  # Output: ᱿

PHP:

$char = "\x{1C7F}";
echo $char;  // Output: ᱿

Ruby:

char = "\u{1C7F}"
puts char  # Output: ᱿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7295;</p>  <!-- Display: ᱿ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C7F;</p>  <!-- Display: ᱿ -->

URL Encoding:

// ᱿ URL encoding
https://unicodefinder.com/search.php?query=%E1%B1%BF

Encodings

MD5:

2d0828bb7e32d33fe850e73b04602bf5

SHA1:

097cb402c38d63357a22f7b0b3338956318dc6dd

Base64:

4bG/