Unicode Finder

"Ţ" U+0162(LATIN CAPITAL LETTER T WITH CEDILLA)

Ţ
U+0162
Blok Adı
Latin Extended-A
Ad
LATIN CAPITAL LETTER T WITH CEDILLA

Programming

C
\u0162
JavaScript
\u0162
Java
\u0162
Json
\u0162
Python
\u0162
Perl
\x{0162}
PHP
\x{0162}
Ruby
\u{0162}
Rust
\u{162}
Go
\u0162

Web

CSS
\000162
HtmlDecimal
Ţ
HtmlHexadecimal
Ţ
Url
%C5%A2

Code

MD5
c7384707ca046b342ae8d719c40696d1
Sha1
164553493df42c4d7f5b75009deafaa6c3117152
Base64
xaI=

Kullanım Örnekleri

Programming Languages

C:

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

JavaScript:

const char = '\u0162';
console.log(char);  // Output: Ţ

Java:

char c = '\u0162';
System.out.println(c);  // Output: Ţ

JSON:

{"text": "\u0162"}  // Value: Ţ

Python:

char = '\u0162'
print(char)  # Output: Ţ

Perl:

my $char = "\x{0162}";
print $char;  # Output: Ţ

PHP:

$char = "\x{0162}";
echo $char;  // Output: Ţ

Ruby:

char = "\u{0162}"
puts char  # Output: Ţ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000162";  /* Display: Ţ */
}

HTML Decimal:

<p>HTML decimal: &#354;</p>  <!-- Display: Ţ -->

HTML Hexadecimal:

<p>HTML hex: &#x0162;</p>  <!-- Display: Ţ -->

URL Encoding:

// Ţ URL encoding
https://unicodefinder.com/search.php?query=%C5%A2

Encodings

MD5:

c7384707ca046b342ae8d719c40696d1

SHA1:

164553493df42c4d7f5b75009deafaa6c3117152

Base64:

xaI=