Unicode Finder

"ⱦ" U+2C66(LATIN SMALL LETTER T WITH DIAGONAL STROKE)

U+2C66
Block Name
Latin Extended-C
Name
LATIN SMALL LETTER T WITH DIAGONAL STROKE

Programming

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

Web

CSS
\002C66
HtmlDecimal
ⱦ
HtmlHexadecimal
ⱦ
Url
%E2%B1%A6

Code

MD5
06d157fc4cae101dd669a25f7716f6f1
Sha1
3533c56b6715013f9ad503a8e237e7d165184b75
Base64
4rGm

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C66';
console.log(char);  // Output: ⱦ

Java:

char c = '\u2C66';
System.out.println(c);  // Output: ⱦ

JSON:

{"text": "\u2C66"}  // Value: ⱦ

Python:

char = '\u2C66'
print(char)  # Output: ⱦ

Perl:

my $char = "\x{2C66}";
print $char;  # Output: ⱦ

PHP:

$char = "\x{2C66}";
echo $char;  // Output: ⱦ

Ruby:

char = "\u{2C66}"
puts char  # Output: ⱦ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11366;</p>  <!-- Display: ⱦ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C66;</p>  <!-- Display: ⱦ -->

URL Encoding:

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

Encodings

MD5:

06d157fc4cae101dd669a25f7716f6f1

SHA1:

3533c56b6715013f9ad503a8e237e7d165184b75

Base64:

4rGm