Unicode Finder

"ᨛ" U+1A1B(BUGINESE VOWEL SIGN AE)

U+1A1B
Nazwa Bloku
Buginese
Nazwa
BUGINESE VOWEL SIGN AE

Programming

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

Web

CSS
\001A1B
HtmlDecimal
ᨛ
HtmlHexadecimal
ᨛ
Url
%E1%A8%9B

Code

MD5
79f33b435a19a4cfdabe87b4250b73a7
Sha1
46e122c0ed102d68ba34675109849b2554642960
Base64
4aib

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1A1B';
console.log(char);  // Output: ᨛ

Java:

char c = '\u1A1B';
System.out.println(c);  // Output: ᨛ

JSON:

{"text": "\u1A1B"}  // Value: ᨛ

Python:

char = '\u1A1B'
print(char)  # Output: ᨛ

Perl:

my $char = "\x{1A1B}";
print $char;  # Output: ᨛ

PHP:

$char = "\x{1A1B}";
echo $char;  // Output: ᨛ

Ruby:

char = "\u{1A1B}"
puts char  # Output: ᨛ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6683;</p>  <!-- Display: ᨛ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A1B;</p>  <!-- Display: ᨛ -->

URL Encoding:

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

Encodings

MD5:

79f33b435a19a4cfdabe87b4250b73a7

SHA1:

46e122c0ed102d68ba34675109849b2554642960

Base64:

4aib