Unicode Finder

"ᨚ" U+1A1A(BUGINESE VOWEL SIGN O)

U+1A1A
Nazwa Bloku
Buginese
Nazwa
BUGINESE VOWEL SIGN O

Programming

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

Web

CSS
\001A1A
HtmlDecimal
ᨚ
HtmlHexadecimal
ᨚ
Url
%E1%A8%9A

Code

MD5
8b53cc2b7eeefe64625c0ecf4fee88b0
Sha1
51edb45c296d2ce8cfbadf2de94f140260023641
Base64
4aia

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1A1A';
console.log(char);  // Output: ᨚ

Java:

char c = '\u1A1A';
System.out.println(c);  // Output: ᨚ

JSON:

{"text": "\u1A1A"}  // Value: ᨚ

Python:

char = '\u1A1A'
print(char)  # Output: ᨚ

Perl:

my $char = "\x{1A1A}";
print $char;  # Output: ᨚ

PHP:

$char = "\x{1A1A}";
echo $char;  // Output: ᨚ

Ruby:

char = "\u{1A1A}"
puts char  # Output: ᨚ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6682;</p>  <!-- Display: ᨚ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A1A;</p>  <!-- Display: ᨚ -->

URL Encoding:

// ᨚ URL encoding
https://unicodefinder.com/search.php?query=%E1%A8%9A

Encodings

MD5:

8b53cc2b7eeefe64625c0ecf4fee88b0

SHA1:

51edb45c296d2ce8cfbadf2de94f140260023641

Base64:

4aia