C:
char c = '\u0475';
printf("%c\n", c); // Output: ѵ
JavaScript:
const char = '\u0475';
console.log(char); // Output: ѵ
Java:
char c = '\u0475';
System.out.println(c); // Output: ѵ
JSON:
{"text": "\u0475"} // Value: ѵ
Python:
char = '\u0475'
print(char) # Output: ѵ
Perl:
my $char = "\x{0475}";
print $char; # Output: ѵ
PHP:
$char = "\x{0475}";
echo $char; // Output: ѵ
Ruby:
char = "\u{0475}"
puts char # Output: ѵ
Rust:
let c = '\u{475}';
println!("{}", c); // Output: ѵ
Go:
char := '\u0475'
fmt.Printf("%c\n", char) // Output: ѵ
CSS:
/* CSS content property */
.element::before {
content: "\000475"; /* 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%B5
MD5:
548eb5b23e9f8b99270f172c4eb03066
SHA1:
6d3bffe8bee6bc2dae660ce39708cc08e4ae50a6
Base64:
0bU=