Unicode Finder

"ȹ" U+0239(LATIN SMALL LETTER QP DIGRAPH)

ȹ
U+0239
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER QP DIGRAPH

Programming

C
\u0239
JavaScript
\u0239
Java
\u0239
Json
\u0239
Python
\u0239
Perl
\x{0239}
PHP
\x{0239}
Ruby
\u{0239}
Rust
\u{239}
Go
\u0239

Web

CSS
\000239
HtmlDecimal
ȹ
HtmlHexadecimal
ȹ
Url
%C8%B9

Code

MD5
0e7ea7ca66bda85e1d0baf86dd88b116
Sha1
63789dbef58c25039e43f12c1745a525578e7e0d
Base64
yLk=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0239';
console.log(char);  // Output: ȹ

Java:

char c = '\u0239';
System.out.println(c);  // Output: ȹ

JSON:

{"text": "\u0239"}  // Value: ȹ

Python:

char = '\u0239'
print(char)  # Output: ȹ

Perl:

my $char = "\x{0239}";
print $char;  # Output: ȹ

PHP:

$char = "\x{0239}";
echo $char;  // Output: ȹ

Ruby:

char = "\u{0239}"
puts char  # Output: ȹ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000239";  /* Display: ȹ */
}

HTML Decimal:

<p>HTML decimal: &#569;</p>  <!-- Display: ȹ -->

HTML Hexadecimal:

<p>HTML hex: &#x0239;</p>  <!-- Display: ȹ -->

URL Encoding:

// ȹ URL encoding
https://unicodefinder.com/search.php?query=%C8%B9

Encodings

MD5:

0e7ea7ca66bda85e1d0baf86dd88b116

SHA1:

63789dbef58c25039e43f12c1745a525578e7e0d

Base64:

yLk=