Unicode Finder

"ɜ" U+025C(LATIN SMALL LETTER REVERSED OPEN E)

ɜ
U+025C
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER REVERSED OPEN E

Programming

C
\u025C
JavaScript
\u025C
Java
\u025C
Json
\u025C
Python
\u025C
Perl
\x{025C}
PHP
\x{025C}
Ruby
\u{025C}
Rust
\u{25C}
Go
\u025C

Web

CSS
\00025C
HtmlDecimal
ɜ
HtmlHexadecimal
ɜ
Url
%C9%9C

Code

MD5
65669d37e71058773c602035b8cffb20
Sha1
a35a1de7996128631db4486f971b9813d44abb62
Base64
yZw=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u025C';
console.log(char);  // Output: ɜ

Java:

char c = '\u025C';
System.out.println(c);  // Output: ɜ

JSON:

{"text": "\u025C"}  // Value: ɜ

Python:

char = '\u025C'
print(char)  # Output: ɜ

Perl:

my $char = "\x{025C}";
print $char;  # Output: ɜ

PHP:

$char = "\x{025C}";
echo $char;  // Output: ɜ

Ruby:

char = "\u{025C}"
puts char  # Output: ɜ

Rust:

let c = '\u{25C}';
println!("{}", c);  // Output: ɜ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00025C";  /* Display: ɜ */
}

HTML Decimal:

<p>HTML decimal: &#604;</p>  <!-- Display: ɜ -->

HTML Hexadecimal:

<p>HTML hex: &#x025C;</p>  <!-- Display: ɜ -->

URL Encoding:

// ɜ URL encoding
https://unicodefinder.com/search.php?query=%C9%9C

Encodings

MD5:

65669d37e71058773c602035b8cffb20

SHA1:

a35a1de7996128631db4486f971b9813d44abb62

Base64:

yZw=