C:
char c = '\u0442';
printf("%c\n", c); // Output: т
JavaScript:
const char = '\u0442';
console.log(char); // Output: т
Java:
char c = '\u0442';
System.out.println(c); // Output: т
JSON:
{"text": "\u0442"} // Value: т
Python:
char = '\u0442'
print(char) # Output: т
Perl:
my $char = "\x{0442}";
print $char; # Output: т
PHP:
$char = "\x{0442}";
echo $char; // Output: т
Ruby:
char = "\u{0442}"
puts char # Output: т
Rust:
let c = '\u{442}';
println!("{}", c); // Output: т
Go:
char := '\u0442'
fmt.Printf("%c\n", char) // Output: т
CSS:
/* CSS content property */
.element::before {
content: "\000442"; /* 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=%D1%82
MD5:
5e44df9ae8c34df2573898904fd68ae0
SHA1:
e576260a6a03f3598c0215a9f54c798796f124fd
Base64:
0YI=