C:
char c = '\u0429';
printf("%c\n", c); // Output: Щ
JavaScript:
const char = '\u0429';
console.log(char); // Output: Щ
Java:
char c = '\u0429';
System.out.println(c); // Output: Щ
JSON:
{"text": "\u0429"} // Value: Щ
Python:
char = '\u0429'
print(char) # Output: Щ
Perl:
my $char = "\x{0429}";
print $char; # Output: Щ
PHP:
$char = "\x{0429}";
echo $char; // Output: Щ
Ruby:
char = "\u{0429}"
puts char # Output: Щ
Rust:
let c = '\u{429}';
println!("{}", c); // Output: Щ
Go:
char := '\u0429'
fmt.Printf("%c\n", char) // Output: Щ
CSS:
/* CSS content property */
.element::before {
content: "\000429"; /* 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=%D0%A9
MD5:
2df1e3f802832e287a81b17898245c0e
SHA1:
49788165106a2b60b45bb68790b99387a08ad4b8
Base64:
0Kk=