Unicode Finder

"f" U+0066(LATIN SMALL LETTER F)

f
U+0066
Block Name
Basic Latin
Name
LATIN SMALL LETTER F

Programming

C
\u0066
JavaScript
\u0066
Java
\u0066
Json
\u0066
Python
\u0066
Perl
\x{0066}
PHP
\x{0066}
Ruby
\u{0066}
Rust
\u{66}
Go
\u0066

Web

CSS
\000066
HtmlDecimal
f
HtmlHexadecimal
f
Url
f

Code

MD5
8fa14cdd754f91cc6554c9e71929cce7
Sha1
4a0a19218e082a343a1b17e5333409af9d98f0f5
Base64
Zg==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0066';
console.log(char);  // Output: f

Java:

char c = '\u0066';
System.out.println(c);  // Output: f

JSON:

{"text": "\u0066"}  // Value: f

Python:

char = '\u0066'
print(char)  # Output: f

Perl:

my $char = "\x{0066}";
print $char;  # Output: f

PHP:

$char = "\x{0066}";
echo $char;  // Output: f

Ruby:

char = "\u{0066}"
puts char  # Output: f

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000066";  /* Display: f */
}

HTML Decimal:

<p>HTML decimal: &#102;</p>  <!-- Display: f -->

HTML Hexadecimal:

<p>HTML hex: &#x0066;</p>  <!-- Display: f -->

URL Encoding:

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

Encodings

MD5:

8fa14cdd754f91cc6554c9e71929cce7

SHA1:

4a0a19218e082a343a1b17e5333409af9d98f0f5

Base64:

Zg==