Unicode Finder

"ȿ" U+023F(LATIN SMALL LETTER S WITH SWASH TAIL)

ȿ
U+023F
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER S WITH SWASH TAIL

Programming

C
\u023F
JavaScript
\u023F
Java
\u023F
Json
\u023F
Python
\u023F
Perl
\x{023F}
PHP
\x{023F}
Ruby
\u{023F}
Rust
\u{23F}
Go
\u023F

Web

CSS
\00023F
HtmlDecimal
ȿ
HtmlHexadecimal
ȿ
Url
%C8%BF

Code

MD5
d02a346d68ded459529a2480c7d0e8de
Sha1
9d4ebd9f5bdeb19eab3fced19ac88b3511d33cc3
Base64
yL8=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u023F';
console.log(char);  // Output: ȿ

Java:

char c = '\u023F';
System.out.println(c);  // Output: ȿ

JSON:

{"text": "\u023F"}  // Value: ȿ

Python:

char = '\u023F'
print(char)  # Output: ȿ

Perl:

my $char = "\x{023F}";
print $char;  # Output: ȿ

PHP:

$char = "\x{023F}";
echo $char;  // Output: ȿ

Ruby:

char = "\u{023F}"
puts char  # Output: ȿ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#575;</p>  <!-- Display: ȿ -->

HTML Hexadecimal:

<p>HTML hex: &#x023F;</p>  <!-- Display: ȿ -->

URL Encoding:

// ȿ URL encoding
https://unicodefinder.com/search.php?query=%C8%BF

Encodings

MD5:

d02a346d68ded459529a2480c7d0e8de

SHA1:

9d4ebd9f5bdeb19eab3fced19ac88b3511d33cc3

Base64:

yL8=