Unicode Finder

"Ɉ" U+0248(LATIN CAPITAL LETTER J WITH STROKE)

Ɉ
U+0248
Nume Bloc
Latin Extended-B
Nume
LATIN CAPITAL LETTER J WITH STROKE

Programming

C
\u0248
JavaScript
\u0248
Java
\u0248
Json
\u0248
Python
\u0248
Perl
\x{0248}
PHP
\x{0248}
Ruby
\u{0248}
Rust
\u{248}
Go
\u0248

Web

CSS
\000248
HtmlDecimal
Ɉ
HtmlHexadecimal
Ɉ
Url
%C9%88

Code

MD5
1743ea95a46b913223dc389c07c13e20
Sha1
5a76b937d5317468b2ade9395e6149565abefca4
Base64
yYg=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0248';
console.log(char);  // Output: Ɉ

Java:

char c = '\u0248';
System.out.println(c);  // Output: Ɉ

JSON:

{"text": "\u0248"}  // Value: Ɉ

Python:

char = '\u0248'
print(char)  # Output: Ɉ

Perl:

my $char = "\x{0248}";
print $char;  # Output: Ɉ

PHP:

$char = "\x{0248}";
echo $char;  // Output: Ɉ

Ruby:

char = "\u{0248}"
puts char  # Output: Ɉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000248";  /* Display: Ɉ */
}

HTML Decimal:

<p>HTML decimal: &#584;</p>  <!-- Display: Ɉ -->

HTML Hexadecimal:

<p>HTML hex: &#x0248;</p>  <!-- Display: Ɉ -->

URL Encoding:

// Ɉ URL encoding
https://unicodefinder.com/search.php?query=%C9%88

Encodings

MD5:

1743ea95a46b913223dc389c07c13e20

SHA1:

5a76b937d5317468b2ade9395e6149565abefca4

Base64:

yYg=