Unicode Finder

"ṩ" U+1E69(LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE)

U+1E69
Nazwa Bloku
Latin Extended Additional
Nazwa
LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE

Programming

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

Web

CSS
\001E69
HtmlDecimal
ṩ
HtmlHexadecimal
ṩ
Url
%E1%B9%A9

Code

MD5
25d0c06498daf41b0677a90f46624fb4
Sha1
3c879e765ee3528f9056e6bcecd4d7c3ba63ab3f
Base64
4bmp

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1E69';
console.log(char);  // Output: ṩ

Java:

char c = '\u1E69';
System.out.println(c);  // Output: ṩ

JSON:

{"text": "\u1E69"}  // Value: ṩ

Python:

char = '\u1E69'
print(char)  # Output: ṩ

Perl:

my $char = "\x{1E69}";
print $char;  # Output: ṩ

PHP:

$char = "\x{1E69}";
echo $char;  // Output: ṩ

Ruby:

char = "\u{1E69}"
puts char  # Output: ṩ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7785;</p>  <!-- Display: ṩ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E69;</p>  <!-- Display: ṩ -->

URL Encoding:

// ṩ URL encoding
https://unicodefinder.com/search.php?query=%E1%B9%A9

Encodings

MD5:

25d0c06498daf41b0677a90f46624fb4

SHA1:

3c879e765ee3528f9056e6bcecd4d7c3ba63ab3f

Base64:

4bmp