Unicode Finder

"ɦ" U+0266(LATIN SMALL LETTER H WITH HOOK)

ɦ
U+0266
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER H WITH HOOK

Programming

C
\u0266
JavaScript
\u0266
Java
\u0266
Json
\u0266
Python
\u0266
Perl
\x{0266}
PHP
\x{0266}
Ruby
\u{0266}
Rust
\u{266}
Go
\u0266

Web

CSS
\000266
HtmlDecimal
ɦ
HtmlHexadecimal
ɦ
Url
%C9%A6

Code

MD5
5c4c8247747b95cb005f097e2ec9d0cf
Sha1
6623e135a53a4a52e9200168f4021ac392a2af42
Base64
yaY=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0266';
console.log(char);  // Output: ɦ

Java:

char c = '\u0266';
System.out.println(c);  // Output: ɦ

JSON:

{"text": "\u0266"}  // Value: ɦ

Python:

char = '\u0266'
print(char)  # Output: ɦ

Perl:

my $char = "\x{0266}";
print $char;  # Output: ɦ

PHP:

$char = "\x{0266}";
echo $char;  // Output: ɦ

Ruby:

char = "\u{0266}"
puts char  # Output: ɦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000266";  /* Display: ɦ */
}

HTML Decimal:

<p>HTML decimal: &#614;</p>  <!-- Display: ɦ -->

HTML Hexadecimal:

<p>HTML hex: &#x0266;</p>  <!-- Display: ɦ -->

URL Encoding:

// ɦ URL encoding
https://unicodefinder.com/search.php?query=%C9%A6

Encodings

MD5:

5c4c8247747b95cb005f097e2ec9d0cf

SHA1:

6623e135a53a4a52e9200168f4021ac392a2af42

Base64:

yaY=