Unicode Finder

"Ɇ" U+0246(LATIN CAPITAL LETTER E WITH STROKE)

Ɇ
U+0246
Nume Bloc
Latin Extended-B
Nume
LATIN CAPITAL LETTER E WITH STROKE

Programming

C
\u0246
JavaScript
\u0246
Java
\u0246
Json
\u0246
Python
\u0246
Perl
\x{0246}
PHP
\x{0246}
Ruby
\u{0246}
Rust
\u{246}
Go
\u0246

Web

CSS
\000246
HtmlDecimal
Ɇ
HtmlHexadecimal
Ɇ
Url
%C9%86

Code

MD5
1d0f4095f3220320030327be38de4ef1
Sha1
b1e04a9b958c22888e639dc0db8b576f92f865f5
Base64
yYY=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0246';
console.log(char);  // Output: Ɇ

Java:

char c = '\u0246';
System.out.println(c);  // Output: Ɇ

JSON:

{"text": "\u0246"}  // Value: Ɇ

Python:

char = '\u0246'
print(char)  # Output: Ɇ

Perl:

my $char = "\x{0246}";
print $char;  # Output: Ɇ

PHP:

$char = "\x{0246}";
echo $char;  // Output: Ɇ

Ruby:

char = "\u{0246}"
puts char  # Output: Ɇ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000246";  /* Display: Ɇ */
}

HTML Decimal:

<p>HTML decimal: &#582;</p>  <!-- Display: Ɇ -->

HTML Hexadecimal:

<p>HTML hex: &#x0246;</p>  <!-- Display: Ɇ -->

URL Encoding:

// Ɇ URL encoding
https://unicodefinder.com/search.php?query=%C9%86

Encodings

MD5:

1d0f4095f3220320030327be38de4ef1

SHA1:

b1e04a9b958c22888e639dc0db8b576f92f865f5

Base64:

yYY=