Unicode Finder

"Ť" U+0164(LATIN CAPITAL LETTER T WITH CARON)

Ť
U+0164
Nazwa Bloku
Latin Extended-A
Nazwa
LATIN CAPITAL LETTER T WITH CARON

Programming

C
\u0164
JavaScript
\u0164
Java
\u0164
Json
\u0164
Python
\u0164
Perl
\x{0164}
PHP
\x{0164}
Ruby
\u{0164}
Rust
\u{164}
Go
\u0164

Web

CSS
\000164
HtmlDecimal
Ť
HtmlHexadecimal
Ť
Url
%C5%A4

Code

MD5
0416ae60f7c8bc97425c7c65ba0e305e
Sha1
d84d51361a57e918e32ba1923ddc1b6373a1688b
Base64
xaQ=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u0164';
console.log(char);  // Output: Ť

Java:

char c = '\u0164';
System.out.println(c);  // Output: Ť

JSON:

{"text": "\u0164"}  // Value: Ť

Python:

char = '\u0164'
print(char)  # Output: Ť

Perl:

my $char = "\x{0164}";
print $char;  # Output: Ť

PHP:

$char = "\x{0164}";
echo $char;  // Output: Ť

Ruby:

char = "\u{0164}"
puts char  # Output: Ť

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000164";  /* Display: Ť */
}

HTML Decimal:

<p>HTML decimal: &#356;</p>  <!-- Display: Ť -->

HTML Hexadecimal:

<p>HTML hex: &#x0164;</p>  <!-- Display: Ť -->

URL Encoding:

// Ť URL encoding
https://unicodefinder.com/search.php?query=%C5%A4

Encodings

MD5:

0416ae60f7c8bc97425c7c65ba0e305e

SHA1:

d84d51361a57e918e32ba1923ddc1b6373a1688b

Base64:

xaQ=