Unicode Finder

"ş" U+015F(LATIN SMALL LETTER S WITH CEDILLA)

ş
U+015F
Nume Bloc
Latin Extended-A
Nume
LATIN SMALL LETTER S WITH CEDILLA

Programming

C
\u015F
JavaScript
\u015F
Java
\u015F
Json
\u015F
Python
\u015F
Perl
\x{015F}
PHP
\x{015F}
Ruby
\u{015F}
Rust
\u{15F}
Go
\u015F

Web

CSS
\00015F
HtmlDecimal
ş
HtmlHexadecimal
ş
Url
%C5%9F

Code

MD5
f77d0141628dbee6c01939f685637c85
Sha1
36e7fba73c1161ecee70557ecd3f88312abf38bf
Base64
xZ8=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u015F';
console.log(char);  // Output: ş

Java:

char c = '\u015F';
System.out.println(c);  // Output: ş

JSON:

{"text": "\u015F"}  // Value: ş

Python:

char = '\u015F'
print(char)  # Output: ş

Perl:

my $char = "\x{015F}";
print $char;  # Output: ş

PHP:

$char = "\x{015F}";
echo $char;  // Output: ş

Ruby:

char = "\u{015F}"
puts char  # Output: ş

Rust:

let c = '\u{15F}';
println!("{}", c);  // Output: ş

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00015F";  /* Display: ş */
}

HTML Decimal:

<p>HTML decimal: &#351;</p>  <!-- Display: ş -->

HTML Hexadecimal:

<p>HTML hex: &#x015F;</p>  <!-- Display: ş -->

URL Encoding:

// ş URL encoding
https://unicodefinder.com/search.php?query=%C5%9F

Encodings

MD5:

f77d0141628dbee6c01939f685637c85

SHA1:

36e7fba73c1161ecee70557ecd3f88312abf38bf

Base64:

xZ8=