C:
char c = '\u0183';
printf("%c\n", c); // Output: ƃ
JavaScript:
const char = '\u0183';
console.log(char); // Output: ƃ
Java:
char c = '\u0183';
System.out.println(c); // Output: ƃ
JSON:
{"text": "\u0183"} // Value: ƃ
Python:
char = '\u0183'
print(char) # Output: ƃ
Perl:
my $char = "\x{0183}";
print $char; # Output: ƃ
PHP:
$char = "\x{0183}";
echo $char; // Output: ƃ
Ruby:
char = "\u{0183}"
puts char # Output: ƃ
Rust:
let c = '\u{183}';
println!("{}", c); // Output: ƃ
Go:
char := '\u0183'
fmt.Printf("%c\n", char) // Output: ƃ
CSS:
/* CSS content property */
.element::before {
content: "\000183"; /* 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%83
MD5:
cde27e9c773accd4deb0a06b17dedc0e
SHA1:
a0fcb57ed5b5f3c893b471212d136618d8e96407
Base64:
xoM=