Unicode Finder

"Ȟ" U+021E(LATIN CAPITAL LETTER H WITH CARON)

Ȟ
U+021E
Nume Bloc
Latin Extended-B
Nume
LATIN CAPITAL LETTER H WITH CARON

Programming

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

Web

CSS
\00021E
HtmlDecimal
Ȟ
HtmlHexadecimal
Ȟ
Url
%C8%9E

Code

MD5
65d6474fcdae21f5af6835797d102244
Sha1
1b85cf9069a5b5e1fafc83112b5840ff38d9a2f7
Base64
yJ4=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u021E';
console.log(char);  // Output: Ȟ

Java:

char c = '\u021E';
System.out.println(c);  // Output: Ȟ

JSON:

{"text": "\u021E"}  // Value: Ȟ

Python:

char = '\u021E'
print(char)  # Output: Ȟ

Perl:

my $char = "\x{021E}";
print $char;  # Output: Ȟ

PHP:

$char = "\x{021E}";
echo $char;  // Output: Ȟ

Ruby:

char = "\u{021E}"
puts char  # Output: Ȟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#542;</p>  <!-- Display: Ȟ -->

HTML Hexadecimal:

<p>HTML hex: &#x021E;</p>  <!-- Display: Ȟ -->

URL Encoding:

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

Encodings

MD5:

65d6474fcdae21f5af6835797d102244

SHA1:

1b85cf9069a5b5e1fafc83112b5840ff38d9a2f7

Base64:

yJ4=