C:
char c = '\u0182';
printf("%c\n", c); // Output: Ƃ
JavaScript:
const char = '\u0182';
console.log(char); // Output: Ƃ
Java:
char c = '\u0182';
System.out.println(c); // Output: Ƃ
JSON:
{"text": "\u0182"} // Value: Ƃ
Python:
char = '\u0182'
print(char) # Output: Ƃ
Perl:
my $char = "\x{0182}";
print $char; # Output: Ƃ
PHP:
$char = "\x{0182}";
echo $char; // Output: Ƃ
Ruby:
char = "\u{0182}"
puts char # Output: Ƃ
Rust:
let c = '\u{182}';
println!("{}", c); // Output: Ƃ
Go:
char := '\u0182'
fmt.Printf("%c\n", char) // Output: Ƃ
CSS:
/* CSS content property */
.element::before {
content: "\000182"; /* 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%82
MD5:
5b94e626e24cc542c9d5ad9adc044c3a
SHA1:
c91f59492257dffea351455d5acdcf6f2b1f2b62
Base64:
xoI=