C:
char c = '\u0555';
printf("%c\n", c); // Output: Օ
JavaScript:
const char = '\u0555';
console.log(char); // Output: Օ
Java:
char c = '\u0555';
System.out.println(c); // Output: Օ
JSON:
{"text": "\u0555"} // Value: Օ
Python:
char = '\u0555'
print(char) # Output: Օ
Perl:
my $char = "\x{0555}";
print $char; # Output: Օ
PHP:
$char = "\x{0555}";
echo $char; // Output: Օ
Ruby:
char = "\u{0555}"
puts char # Output: Օ
Rust:
let c = '\u{555}';
println!("{}", c); // Output: Օ
Go:
char := '\u0555'
fmt.Printf("%c\n", char) // Output: Օ
CSS:
/* CSS content property */
.element::before {
content: "\000555"; /* 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=%D5%95
MD5:
415dfa61feb9182ff381ac2a94d314fe
SHA1:
c9b4b7a8e3149541038c316e4ae5175b8f65c717
Base64:
1ZU=