C:
char c = '\u0449';
printf("%c\n", c); // Output: щ
JavaScript:
const char = '\u0449';
console.log(char); // Output: щ
Java:
char c = '\u0449';
System.out.println(c); // Output: щ
JSON:
{"text": "\u0449"} // Value: щ
Python:
char = '\u0449'
print(char) # Output: щ
Perl:
my $char = "\x{0449}";
print $char; # Output: щ
PHP:
$char = "\x{0449}";
echo $char; // Output: щ
Ruby:
char = "\u{0449}"
puts char # Output: щ
Rust:
let c = '\u{449}';
println!("{}", c); // Output: щ
Go:
char := '\u0449'
fmt.Printf("%c\n", char) // Output: щ
CSS:
/* CSS content property */
.element::before {
content: "\000449"; /* 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%89
MD5:
d1a623d8d3b469117d9b8e9850e510e4
SHA1:
ffec67789fb1fcdc78e2d2a16c4d7d7335fcc185
Base64:
0Yk=