Unicode Finder

"ⱨ" U+2C68(LATIN SMALL LETTER H WITH DESCENDER)

U+2C68
Block Name
Latin Extended-C
Name
LATIN SMALL LETTER H WITH DESCENDER

Programming

C
\u2C68
JavaScript
\u2C68
Java
\u2C68
Json
\u2C68
Python
\u2C68
Perl
\x{2C68}
PHP
\x{2C68}
Ruby
\u{2C68}
Rust
\u{2C68}
Go
\u2C68

Web

CSS
\002C68
HtmlDecimal
ⱨ
HtmlHexadecimal
ⱨ
Url
%E2%B1%A8

Code

MD5
9f98b6a092dd9a549829f58f633aaa5f
Sha1
24d6154b061f7ef9cd3df8da1e4304fa7eee743b
Base64
4rGo

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C68';
console.log(char);  // Output: ⱨ

Java:

char c = '\u2C68';
System.out.println(c);  // Output: ⱨ

JSON:

{"text": "\u2C68"}  // Value: ⱨ

Python:

char = '\u2C68'
print(char)  # Output: ⱨ

Perl:

my $char = "\x{2C68}";
print $char;  # Output: ⱨ

PHP:

$char = "\x{2C68}";
echo $char;  // Output: ⱨ

Ruby:

char = "\u{2C68}"
puts char  # Output: ⱨ

Rust:

let c = '\u{2C68}';
println!("{}", c);  // Output: ⱨ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002C68";  /* Display: ⱨ */
}

HTML Decimal:

<p>HTML decimal: &#11368;</p>  <!-- Display: ⱨ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C68;</p>  <!-- Display: ⱨ -->

URL Encoding:

// ⱨ URL encoding
https://unicodefinder.com/search.php?query=%E2%B1%A8

Encodings

MD5:

9f98b6a092dd9a549829f58f633aaa5f

SHA1:

24d6154b061f7ef9cd3df8da1e4304fa7eee743b

Base64:

4rGo