C:
char c = '\u0243';
printf("%c\n", c); // Output: Ƀ
JavaScript:
const char = '\u0243';
console.log(char); // Output: Ƀ
Java:
char c = '\u0243';
System.out.println(c); // Output: Ƀ
JSON:
{"text": "\u0243"} // Value: Ƀ
Python:
char = '\u0243'
print(char) # Output: Ƀ
Perl:
my $char = "\x{0243}";
print $char; # Output: Ƀ
PHP:
$char = "\x{0243}";
echo $char; // Output: Ƀ
Ruby:
char = "\u{0243}"
puts char # Output: Ƀ
Rust:
let c = '\u{243}';
println!("{}", c); // Output: Ƀ
Go:
char := '\u0243'
fmt.Printf("%c\n", char) // Output: Ƀ
CSS:
/* CSS content property */
.element::before {
content: "\000243"; /* 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=%C9%83
MD5:
5841ef3e24e951c3f9b21ebcda3c5062
SHA1:
6e1dff9bafe0a0b8df2bb3746b6575cd3f7ddc83
Base64:
yYM=