Unicode Finder

"ƈ" U+0188(LATIN SMALL LETTER C WITH HOOK)

ƈ
U+0188
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER C WITH HOOK

Programming

C
\u0188
JavaScript
\u0188
Java
\u0188
Json
\u0188
Python
\u0188
Perl
\x{0188}
PHP
\x{0188}
Ruby
\u{0188}
Rust
\u{188}
Go
\u0188

Web

CSS
\000188
HtmlDecimal
ƈ
HtmlHexadecimal
ƈ
Url
%C6%88

Code

MD5
ae68af38fbdcf96e879108c62907121c
Sha1
bc5d2dd5133f4705c57b967b494b1f7dae47974c
Base64
xog=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0188';
console.log(char);  // Output: ƈ

Java:

char c = '\u0188';
System.out.println(c);  // Output: ƈ

JSON:

{"text": "\u0188"}  // Value: ƈ

Python:

char = '\u0188'
print(char)  # Output: ƈ

Perl:

my $char = "\x{0188}";
print $char;  # Output: ƈ

PHP:

$char = "\x{0188}";
echo $char;  // Output: ƈ

Ruby:

char = "\u{0188}"
puts char  # Output: ƈ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000188";  /* Display: ƈ */
}

HTML Decimal:

<p>HTML decimal: &#392;</p>  <!-- Display: ƈ -->

HTML Hexadecimal:

<p>HTML hex: &#x0188;</p>  <!-- Display: ƈ -->

URL Encoding:

// ƈ URL encoding
https://unicodefinder.com/search.php?query=%C6%88

Encodings

MD5:

ae68af38fbdcf96e879108c62907121c

SHA1:

bc5d2dd5133f4705c57b967b494b1f7dae47974c

Base64:

xog=