Unicode Finder

"Ֆ" U+0556(ARMENIAN CAPITAL LETTER FEH)

Ֆ
U+0556
Block Name
Armenian
Name
ARMENIAN CAPITAL LETTER FEH

Programming

C
\u0556
JavaScript
\u0556
Java
\u0556
Json
\u0556
Python
\u0556
Perl
\x{0556}
PHP
\x{0556}
Ruby
\u{0556}
Rust
\u{556}
Go
\u0556

Web

CSS
\000556
HtmlDecimal
Ֆ
HtmlHexadecimal
Ֆ
Url
%D5%96

Code

MD5
07c8b379cd998b77c29edfd480fb0ffc
Sha1
f6895ee7935024929b5e485bff2a0680c9d91cea
Base64
1ZY=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0556';
console.log(char);  // Output: Ֆ

Java:

char c = '\u0556';
System.out.println(c);  // Output: Ֆ

JSON:

{"text": "\u0556"}  // Value: Ֆ

Python:

char = '\u0556'
print(char)  # Output: Ֆ

Perl:

my $char = "\x{0556}";
print $char;  # Output: Ֆ

PHP:

$char = "\x{0556}";
echo $char;  // Output: Ֆ

Ruby:

char = "\u{0556}"
puts char  # Output: Ֆ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000556";  /* Display: Ֆ */
}

HTML Decimal:

<p>HTML decimal: &#1366;</p>  <!-- Display: Ֆ -->

HTML Hexadecimal:

<p>HTML hex: &#x0556;</p>  <!-- Display: Ֆ -->

URL Encoding:

// Ֆ URL encoding
https://unicodefinder.com/search.php?query=%D5%96

Encodings

MD5:

07c8b379cd998b77c29edfd480fb0ffc

SHA1:

f6895ee7935024929b5e485bff2a0680c9d91cea

Base64:

1ZY=