Unicode Finder

"t" U+0074(LATIN SMALL LETTER T)

t
U+0074
Block Name
Basic Latin
Name
LATIN SMALL LETTER T

Programming

C
\u0074
JavaScript
\u0074
Java
\u0074
Json
\u0074
Python
\u0074
Perl
\x{0074}
PHP
\x{0074}
Ruby
\u{0074}
Rust
\u{74}
Go
\u0074

Web

CSS
\000074
HtmlDecimal
t
HtmlHexadecimal
t
Url
t

Code

MD5
e358efa489f58062f10dd7316b65649e
Sha1
8efd86fb78a56a5145ed7739dcb00c78581c5375
Base64
dA==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0074';
console.log(char);  // Output: t

Java:

char c = '\u0074';
System.out.println(c);  // Output: t

JSON:

{"text": "\u0074"}  // Value: t

Python:

char = '\u0074'
print(char)  # Output: t

Perl:

my $char = "\x{0074}";
print $char;  # Output: t

PHP:

$char = "\x{0074}";
echo $char;  // Output: t

Ruby:

char = "\u{0074}"
puts char  # Output: t

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000074";  /* Display: t */
}

HTML Decimal:

<p>HTML decimal: &#116;</p>  <!-- Display: t -->

HTML Hexadecimal:

<p>HTML hex: &#x0074;</p>  <!-- Display: t -->

URL Encoding:

// t URL encoding
https://unicodefinder.com/search.php?query=t

Encodings

MD5:

e358efa489f58062f10dd7316b65649e

SHA1:

8efd86fb78a56a5145ed7739dcb00c78581c5375

Base64:

dA==