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: Ţ
CSS:
/* CSS content property */
.element::before {
content: "\000162"; /* Display: Ţ */
}
HTML Decimal:
<p>HTML decimal: Ţ</p> <!-- Display: Ţ -->
HTML Hexadecimal:
<p>HTML hex: Ţ</p> <!-- Display: Ţ -->
URL Encoding:
// Ţ URL encoding
https://unicodefinder.com/search.php?query=%C5%A2
MD5:
c7384707ca046b342ae8d719c40696d1
SHA1:
164553493df42c4d7f5b75009deafaa6c3117152
Base64:
xaI=