Unicode Finder

"ȷ" U+0237(LATIN SMALL LETTER DOTLESS J)

ȷ
U+0237
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER DOTLESS J

Programming

C
\u0237
JavaScript
\u0237
Java
\u0237
Json
\u0237
Python
\u0237
Perl
\x{0237}
PHP
\x{0237}
Ruby
\u{0237}
Rust
\u{237}
Go
\u0237

Web

CSS
\000237
HtmlDecimal
ȷ
HtmlHexadecimal
ȷ
Url
%C8%B7

Code

MD5
a47e1add9c5e76327e49d968d2b93653
Sha1
b8143d2c9e5ff22e05415e0f48cc68cfc199049b
Base64
yLc=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0237';
console.log(char);  // Output: ȷ

Java:

char c = '\u0237';
System.out.println(c);  // Output: ȷ

JSON:

{"text": "\u0237"}  // Value: ȷ

Python:

char = '\u0237'
print(char)  # Output: ȷ

Perl:

my $char = "\x{0237}";
print $char;  # Output: ȷ

PHP:

$char = "\x{0237}";
echo $char;  // Output: ȷ

Ruby:

char = "\u{0237}"
puts char  # Output: ȷ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000237";  /* Display: ȷ */
}

HTML Decimal:

<p>HTML decimal: &#567;</p>  <!-- Display: ȷ -->

HTML Hexadecimal:

<p>HTML hex: &#x0237;</p>  <!-- Display: ȷ -->

URL Encoding:

// ȷ URL encoding
https://unicodefinder.com/search.php?query=%C8%B7

Encodings

MD5:

a47e1add9c5e76327e49d968d2b93653

SHA1:

b8143d2c9e5ff22e05415e0f48cc68cfc199049b

Base64:

yLc=