C:
char c = '\u01F7';
printf("%c\n", c); // Output: Ƿ
JavaScript:
const char = '\u01F7';
console.log(char); // Output: Ƿ
Java:
char c = '\u01F7';
System.out.println(c); // Output: Ƿ
JSON:
{"text": "\u01F7"} // Value: Ƿ
Python:
char = '\u01F7'
print(char) # Output: Ƿ
Perl:
my $char = "\x{01F7}";
print $char; # Output: Ƿ
PHP:
$char = "\x{01F7}";
echo $char; // Output: Ƿ
Ruby:
char = "\u{01F7}"
puts char # Output: Ƿ
Rust:
let c = '\u{1F7}';
println!("{}", c); // Output: Ƿ
Go:
char := '\u01F7'
fmt.Printf("%c\n", char) // Output: Ƿ
CSS:
/* CSS content property */
.element::before {
content: "\0001F7"; /* 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=%C7%B7
MD5:
c2ea7a98bc2f63210ce86eab7eb7c80f
SHA1:
679e3632d644f1a72f420a44e875ba96808a6f19
Base64:
x7c=