C:
char c = '\u0428';
printf("%c\n", c); // Output: Ш
JavaScript:
const char = '\u0428';
console.log(char); // Output: Ш
Java:
char c = '\u0428';
System.out.println(c); // Output: Ш
JSON:
{"text": "\u0428"} // Value: Ш
Python:
char = '\u0428'
print(char) # Output: Ш
Perl:
my $char = "\x{0428}";
print $char; # Output: Ш
PHP:
$char = "\x{0428}";
echo $char; // Output: Ш
Ruby:
char = "\u{0428}"
puts char # Output: Ш
Rust:
let c = '\u{428}';
println!("{}", c); // Output: Ш
Go:
char := '\u0428'
fmt.Printf("%c\n", char) // Output: Ш
CSS:
/* CSS content property */
.element::before {
content: "\000428"; /* 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%A8
MD5:
7654fa978f2f3ba76b8848aac865c3a9
SHA1:
f6195acdbc640427b744eb2924b750f4771b52dd
Base64:
0Kg=