Unicode Finder

"ᨈ" U+1A08(BUGINESE LETTER TA)

U+1A08
Nazwa Bloku
Buginese
Nazwa
BUGINESE LETTER TA

Programming

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

Web

CSS
\001A08
HtmlDecimal
ᨈ
HtmlHexadecimal
ᨈ
Url
%E1%A8%88

Code

MD5
52d4e9242c723cc9a0206bc57fc5b9ea
Sha1
ea226351446c24109bb79d3e84a21311349af5c4
Base64
4aiI

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1A08';
console.log(char);  // Output: ᨈ

Java:

char c = '\u1A08';
System.out.println(c);  // Output: ᨈ

JSON:

{"text": "\u1A08"}  // Value: ᨈ

Python:

char = '\u1A08'
print(char)  # Output: ᨈ

Perl:

my $char = "\x{1A08}";
print $char;  # Output: ᨈ

PHP:

$char = "\x{1A08}";
echo $char;  // Output: ᨈ

Ruby:

char = "\u{1A08}"
puts char  # Output: ᨈ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6664;</p>  <!-- Display: ᨈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A08;</p>  <!-- Display: ᨈ -->

URL Encoding:

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

Encodings

MD5:

52d4e9242c723cc9a0206bc57fc5b9ea

SHA1:

ea226351446c24109bb79d3e84a21311349af5c4

Base64:

4aiI