Unicode Finder

"h" U+0068(LATIN SMALL LETTER H)

h
U+0068
Block Name
Basic Latin
Name
LATIN SMALL LETTER H

Programming

C
\u0068
JavaScript
\u0068
Java
\u0068
Json
\u0068
Python
\u0068
Perl
\x{0068}
PHP
\x{0068}
Ruby
\u{0068}
Rust
\u{68}
Go
\u0068

Web

CSS
\000068
HtmlDecimal
h
HtmlHexadecimal
h
Url
h

Code

MD5
2510c39011c5be704182423e3a695e91
Sha1
27d5482eebd075de44389774fce28c69f45c8a75
Base64
aA==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0068';
console.log(char);  // Output: h

Java:

char c = '\u0068';
System.out.println(c);  // Output: h

JSON:

{"text": "\u0068"}  // Value: h

Python:

char = '\u0068'
print(char)  # Output: h

Perl:

my $char = "\x{0068}";
print $char;  # Output: h

PHP:

$char = "\x{0068}";
echo $char;  // Output: h

Ruby:

char = "\u{0068}"
puts char  # Output: h

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000068";  /* Display: h */
}

HTML Decimal:

<p>HTML decimal: &#104;</p>  <!-- Display: h -->

HTML Hexadecimal:

<p>HTML hex: &#x0068;</p>  <!-- Display: h -->

URL Encoding:

// h URL encoding
https://unicodefinder.com/search.php?query=h

Encodings

MD5:

2510c39011c5be704182423e3a695e91

SHA1:

27d5482eebd075de44389774fce28c69f45c8a75

Base64:

aA==