Unicode Finder

"ᨒ" U+1A12(BUGINESE LETTER LA)

U+1A12
Nazwa Bloku
Buginese
Nazwa
BUGINESE LETTER LA

Programming

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

Web

CSS
\001A12
HtmlDecimal
ᨒ
HtmlHexadecimal
ᨒ
Url
%E1%A8%92

Code

MD5
0df3834f42e99c9c30e756e34921cc2c
Sha1
c271498de4176274cd0f81b85a17dbeb57340012
Base64
4aiS

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1A12';
console.log(char);  // Output: ᨒ

Java:

char c = '\u1A12';
System.out.println(c);  // Output: ᨒ

JSON:

{"text": "\u1A12"}  // Value: ᨒ

Python:

char = '\u1A12'
print(char)  # Output: ᨒ

Perl:

my $char = "\x{1A12}";
print $char;  # Output: ᨒ

PHP:

$char = "\x{1A12}";
echo $char;  // Output: ᨒ

Ruby:

char = "\u{1A12}"
puts char  # Output: ᨒ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6674;</p>  <!-- Display: ᨒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A12;</p>  <!-- Display: ᨒ -->

URL Encoding:

// ᨒ URL encoding
https://unicodefinder.com/search.php?query=%E1%A8%92

Encodings

MD5:

0df3834f42e99c9c30e756e34921cc2c

SHA1:

c271498de4176274cd0f81b85a17dbeb57340012

Base64:

4aiS