Unicode Finder

"ɘ" U+0258(LATIN SMALL LETTER REVERSED E)

ɘ
U+0258
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER REVERSED E

Programming

C
\u0258
JavaScript
\u0258
Java
\u0258
Json
\u0258
Python
\u0258
Perl
\x{0258}
PHP
\x{0258}
Ruby
\u{0258}
Rust
\u{258}
Go
\u0258

Web

CSS
\000258
HtmlDecimal
ɘ
HtmlHexadecimal
ɘ
Url
%C9%98

Code

MD5
684ae5227129eeb1924e1a656c6662be
Sha1
9d383a5681e30b6a2085844e7e778165b4a58500
Base64
yZg=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0258';
console.log(char);  // Output: ɘ

Java:

char c = '\u0258';
System.out.println(c);  // Output: ɘ

JSON:

{"text": "\u0258"}  // Value: ɘ

Python:

char = '\u0258'
print(char)  # Output: ɘ

Perl:

my $char = "\x{0258}";
print $char;  # Output: ɘ

PHP:

$char = "\x{0258}";
echo $char;  // Output: ɘ

Ruby:

char = "\u{0258}"
puts char  # Output: ɘ

Rust:

let c = '\u{258}';
println!("{}", c);  // Output: ɘ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000258";  /* Display: ɘ */
}

HTML Decimal:

<p>HTML decimal: &#600;</p>  <!-- Display: ɘ -->

HTML Hexadecimal:

<p>HTML hex: &#x0258;</p>  <!-- Display: ɘ -->

URL Encoding:

// ɘ URL encoding
https://unicodefinder.com/search.php?query=%C9%98

Encodings

MD5:

684ae5227129eeb1924e1a656c6662be

SHA1:

9d383a5681e30b6a2085844e7e778165b4a58500

Base64:

yZg=