C:
char c = '\u04F6';
printf("%c\n", c); // Output: Ӷ
JavaScript:
const char = '\u04F6';
console.log(char); // Output: Ӷ
Java:
char c = '\u04F6';
System.out.println(c); // Output: Ӷ
JSON:
{"text": "\u04F6"} // Value: Ӷ
Python:
char = '\u04F6'
print(char) # Output: Ӷ
Perl:
my $char = "\x{04F6}";
print $char; # Output: Ӷ
PHP:
$char = "\x{04F6}";
echo $char; // Output: Ӷ
Ruby:
char = "\u{04F6}"
puts char # Output: Ӷ
Rust:
let c = '\u{4F6}';
println!("{}", c); // Output: Ӷ
Go:
char := '\u04F6'
fmt.Printf("%c\n", char) // Output: Ӷ
CSS:
/* CSS content property */
.element::before {
content: "\0004F6"; /* 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=%D3%B6
MD5:
2636fe438889537be2de6c7ed0e0c8e0
SHA1:
b0e30fca3df70b6c3cf40ba6bc4afdd276286d99
Base64:
07Y=