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