Unicode Finder

"ⲫ" U+2CAB(COPTIC SMALL LETTER FI)

U+2CAB
Block Name
Coptic
Name
COPTIC SMALL LETTER FI

Programming

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

Web

CSS
\002CAB
HtmlDecimal
ⲫ
HtmlHexadecimal
ⲫ
Url
%E2%B2%AB

Code

MD5
6f3f2602f8e0bb671755d67dd9ac3321
Sha1
04e42fa36b90f4b65db77a9252fb197cd421d54b
Base64
4rKr

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2CAB';
console.log(char);  // Output: ⲫ

Java:

char c = '\u2CAB';
System.out.println(c);  // Output: ⲫ

JSON:

{"text": "\u2CAB"}  // Value: ⲫ

Python:

char = '\u2CAB'
print(char)  # Output: ⲫ

Perl:

my $char = "\x{2CAB}";
print $char;  # Output: ⲫ

PHP:

$char = "\x{2CAB}";
echo $char;  // Output: ⲫ

Ruby:

char = "\u{2CAB}"
puts char  # Output: ⲫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11435;</p>  <!-- Display: ⲫ -->

HTML Hexadecimal:

<p>HTML hex: &#x2CAB;</p>  <!-- Display: ⲫ -->

URL Encoding:

// ⲫ URL encoding
https://unicodefinder.com/search.php?query=%E2%B2%AB

Encodings

MD5:

6f3f2602f8e0bb671755d67dd9ac3321

SHA1:

04e42fa36b90f4b65db77a9252fb197cd421d54b

Base64:

4rKr