C:
char c = '\u0478';
printf("%c\n", c); // Output: Ѹ
JavaScript:
const char = '\u0478';
console.log(char); // Output: Ѹ
Java:
char c = '\u0478';
System.out.println(c); // Output: Ѹ
JSON:
{"text": "\u0478"} // Value: Ѹ
Python:
char = '\u0478'
print(char) # Output: Ѹ
Perl:
my $char = "\x{0478}";
print $char; # Output: Ѹ
PHP:
$char = "\x{0478}";
echo $char; // Output: Ѹ
Ruby:
char = "\u{0478}"
puts char # Output: Ѹ
Rust:
let c = '\u{478}';
println!("{}", c); // Output: Ѹ
Go:
char := '\u0478'
fmt.Printf("%c\n", char) // Output: Ѹ
CSS:
/* CSS content property */
.element::before {
content: "\000478"; /* 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%B8
MD5:
59a24365855086c596c7b1094f0bd651
SHA1:
6f52618b284272955eaaea1c5cdcdd5f5dd2a577
Base64:
0bg=