C:
char c = '\u0180';
printf("%c\n", c); // Output: ƀ
JavaScript:
const char = '\u0180';
console.log(char); // Output: ƀ
Java:
char c = '\u0180';
System.out.println(c); // Output: ƀ
JSON:
{"text": "\u0180"} // Value: ƀ
Python:
char = '\u0180'
print(char) # Output: ƀ
Perl:
my $char = "\x{0180}";
print $char; # Output: ƀ
PHP:
$char = "\x{0180}";
echo $char; // Output: ƀ
Ruby:
char = "\u{0180}"
puts char # Output: ƀ
Rust:
let c = '\u{180}';
println!("{}", c); // Output: ƀ
Go:
char := '\u0180'
fmt.Printf("%c\n", char) // Output: ƀ
CSS:
/* CSS content property */
.element::before {
content: "\000180"; /* 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=%C6%80
MD5:
5da2c0e8dd060dac62f473252ea004b7
SHA1:
e67774d58c7b08f8b30575d8492f68a38fc54826
Base64:
xoA=