C:
char c = '\u0405';
printf("%c\n", c); // Output: Ѕ
JavaScript:
const char = '\u0405';
console.log(char); // Output: Ѕ
Java:
char c = '\u0405';
System.out.println(c); // Output: Ѕ
JSON:
{"text": "\u0405"} // Value: Ѕ
Python:
char = '\u0405'
print(char) # Output: Ѕ
Perl:
my $char = "\x{0405}";
print $char; # Output: Ѕ
PHP:
$char = "\x{0405}";
echo $char; // Output: Ѕ
Ruby:
char = "\u{0405}"
puts char # Output: Ѕ
Rust:
let c = '\u{405}';
println!("{}", c); // Output: Ѕ
Go:
char := '\u0405'
fmt.Printf("%c\n", char) // Output: Ѕ
CSS:
/* CSS content property */
.element::before {
content: "\000405"; /* 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%85
MD5:
6fa4f9c294c0da9497147c926fcc25d5
SHA1:
63e1bc0b080a437a0ed6fe67065185ba37fd7334
Base64:
0IU=