Unicode Finder

"ᨘ" U+1A18(BUGINESE VOWEL SIGN U)

U+1A18
Nazwa Bloku
Buginese
Nazwa
BUGINESE VOWEL SIGN U

Programming

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

Web

CSS
\001A18
HtmlDecimal
ᨘ
HtmlHexadecimal
ᨘ
Url
%E1%A8%98

Code

MD5
1dfcfa7137d7d8ecf473d5648eeffa74
Sha1
4f4cbf590bfc4ce5b154bcda2f021179d9d9d723
Base64
4aiY

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1A18';
console.log(char);  // Output: ᨘ

Java:

char c = '\u1A18';
System.out.println(c);  // Output: ᨘ

JSON:

{"text": "\u1A18"}  // Value: ᨘ

Python:

char = '\u1A18'
print(char)  # Output: ᨘ

Perl:

my $char = "\x{1A18}";
print $char;  # Output: ᨘ

PHP:

$char = "\x{1A18}";
echo $char;  // Output: ᨘ

Ruby:

char = "\u{1A18}"
puts char  # Output: ᨘ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6680;</p>  <!-- Display: ᨘ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A18;</p>  <!-- Display: ᨘ -->

URL Encoding:

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

Encodings

MD5:

1dfcfa7137d7d8ecf473d5648eeffa74

SHA1:

4f4cbf590bfc4ce5b154bcda2f021179d9d9d723

Base64:

4aiY