Unicode Finder

"ȟ" U+021F(LATIN SMALL LETTER H WITH CARON)

ȟ
U+021F
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER H WITH CARON

Programming

C
\u021F
JavaScript
\u021F
Java
\u021F
Json
\u021F
Python
\u021F
Perl
\x{021F}
PHP
\x{021F}
Ruby
\u{021F}
Rust
\u{21F}
Go
\u021F

Web

CSS
\00021F
HtmlDecimal
ȟ
HtmlHexadecimal
ȟ
Url
%C8%9F

Code

MD5
6c7dee01ad7a07a8b96e4e817aba95c0
Sha1
318173e930830aadaf5cdeef50e54ef2ebd705b3
Base64
yJ8=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u021F';
console.log(char);  // Output: ȟ

Java:

char c = '\u021F';
System.out.println(c);  // Output: ȟ

JSON:

{"text": "\u021F"}  // Value: ȟ

Python:

char = '\u021F'
print(char)  # Output: ȟ

Perl:

my $char = "\x{021F}";
print $char;  # Output: ȟ

PHP:

$char = "\x{021F}";
echo $char;  // Output: ȟ

Ruby:

char = "\u{021F}"
puts char  # Output: ȟ

Rust:

let c = '\u{21F}';
println!("{}", c);  // Output: ȟ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00021F";  /* Display: ȟ */
}

HTML Decimal:

<p>HTML decimal: &#543;</p>  <!-- Display: ȟ -->

HTML Hexadecimal:

<p>HTML hex: &#x021F;</p>  <!-- Display: ȟ -->

URL Encoding:

// ȟ URL encoding
https://unicodefinder.com/search.php?query=%C8%9F

Encodings

MD5:

6c7dee01ad7a07a8b96e4e817aba95c0

SHA1:

318173e930830aadaf5cdeef50e54ef2ebd705b3

Base64:

yJ8=