C:
char c = '\u0477';
printf("%c\n", c); // Output: ѷ
JavaScript:
const char = '\u0477';
console.log(char); // Output: ѷ
Java:
char c = '\u0477';
System.out.println(c); // Output: ѷ
JSON:
{"text": "\u0477"} // Value: ѷ
Python:
char = '\u0477'
print(char) # Output: ѷ
Perl:
my $char = "\x{0477}";
print $char; # Output: ѷ
PHP:
$char = "\x{0477}";
echo $char; // Output: ѷ
Ruby:
char = "\u{0477}"
puts char # Output: ѷ
Rust:
let c = '\u{477}';
println!("{}", c); // Output: ѷ
Go:
char := '\u0477'
fmt.Printf("%c\n", char) // Output: ѷ
CSS:
/* CSS content property */
.element::before {
content: "\000477"; /* 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%B7
MD5:
cb764c97f6a0ea783c4b9fbe2ab8c542
SHA1:
4bd1e66f23a6fa2c76d4cf5a012c65131519b49d
Base64:
0bc=