Unicode Finder

"ʄ" U+0284(LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK)

ʄ
U+0284
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK

Programming

C
\u0284
JavaScript
\u0284
Java
\u0284
Json
\u0284
Python
\u0284
Perl
\x{0284}
PHP
\x{0284}
Ruby
\u{0284}
Rust
\u{284}
Go
\u0284

Web

CSS
\000284
HtmlDecimal
ʄ
HtmlHexadecimal
ʄ
Url
%CA%84

Code

MD5
071eb61a4b5efabac39d17ebc05d8efc
Sha1
09503199746f8dc1542c1242d73af04b828977cb
Base64
yoQ=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0284';
console.log(char);  // Output: ʄ

Java:

char c = '\u0284';
System.out.println(c);  // Output: ʄ

JSON:

{"text": "\u0284"}  // Value: ʄ

Python:

char = '\u0284'
print(char)  # Output: ʄ

Perl:

my $char = "\x{0284}";
print $char;  # Output: ʄ

PHP:

$char = "\x{0284}";
echo $char;  // Output: ʄ

Ruby:

char = "\u{0284}"
puts char  # Output: ʄ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000284";  /* Display: ʄ */
}

HTML Decimal:

<p>HTML decimal: &#644;</p>  <!-- Display: ʄ -->

HTML Hexadecimal:

<p>HTML hex: &#x0284;</p>  <!-- Display: ʄ -->

URL Encoding:

// ʄ URL encoding
https://unicodefinder.com/search.php?query=%CA%84

Encodings

MD5:

071eb61a4b5efabac39d17ebc05d8efc

SHA1:

09503199746f8dc1542c1242d73af04b828977cb

Base64:

yoQ=