C:
char c = '\u0476';
printf("%c\n", c); // Output: Ѷ
JavaScript:
const char = '\u0476';
console.log(char); // Output: Ѷ
Java:
char c = '\u0476';
System.out.println(c); // Output: Ѷ
JSON:
{"text": "\u0476"} // Value: Ѷ
Python:
char = '\u0476'
print(char) # Output: Ѷ
Perl:
my $char = "\x{0476}";
print $char; # Output: Ѷ
PHP:
$char = "\x{0476}";
echo $char; // Output: Ѷ
Ruby:
char = "\u{0476}"
puts char # Output: Ѷ
Rust:
let c = '\u{476}';
println!("{}", c); // Output: Ѷ
Go:
char := '\u0476'
fmt.Printf("%c\n", char) // Output: Ѷ
CSS:
/* CSS content property */
.element::before {
content: "\000476"; /* 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%B6
MD5:
efc807fb2c1b9baac260eac53a226497
SHA1:
da08885c12b992fb2d83645c0adf5c376e9c88f1
Base64:
0bY=