Unicode Finder

"ʜ" U+029C(LATIN LETTER SMALL CAPITAL H)

ʜ
U+029C
Nume Bloc
IPA Extensions
Nume
LATIN LETTER SMALL CAPITAL H

Programming

C
\u029C
JavaScript
\u029C
Java
\u029C
Json
\u029C
Python
\u029C
Perl
\x{029C}
PHP
\x{029C}
Ruby
\u{029C}
Rust
\u{29C}
Go
\u029C

Web

CSS
\00029C
HtmlDecimal
ʜ
HtmlHexadecimal
ʜ
Url
%CA%9C

Code

MD5
adc39231167d19842ff3fc88e0b7ce08
Sha1
78fd8306363673b62b962b72620c82a205130c6e
Base64
ypw=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u029C';
console.log(char);  // Output: ʜ

Java:

char c = '\u029C';
System.out.println(c);  // Output: ʜ

JSON:

{"text": "\u029C"}  // Value: ʜ

Python:

char = '\u029C'
print(char)  # Output: ʜ

Perl:

my $char = "\x{029C}";
print $char;  # Output: ʜ

PHP:

$char = "\x{029C}";
echo $char;  // Output: ʜ

Ruby:

char = "\u{029C}"
puts char  # Output: ʜ

Rust:

let c = '\u{29C}';
println!("{}", c);  // Output: ʜ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00029C";  /* Display: ʜ */
}

HTML Decimal:

<p>HTML decimal: &#668;</p>  <!-- Display: ʜ -->

HTML Hexadecimal:

<p>HTML hex: &#x029C;</p>  <!-- Display: ʜ -->

URL Encoding:

// ʜ URL encoding
https://unicodefinder.com/search.php?query=%CA%9C

Encodings

MD5:

adc39231167d19842ff3fc88e0b7ce08

SHA1:

78fd8306363673b62b962b72620c82a205130c6e

Base64:

ypw=