C:
char c = '\u0283';
printf("%c\n", c); // Output: ʃ
JavaScript:
const char = '\u0283';
console.log(char); // Output: ʃ
Java:
char c = '\u0283';
System.out.println(c); // Output: ʃ
JSON:
{"text": "\u0283"} // Value: ʃ
Python:
char = '\u0283'
print(char) # Output: ʃ
Perl:
my $char = "\x{0283}";
print $char; # Output: ʃ
PHP:
$char = "\x{0283}";
echo $char; // Output: ʃ
Ruby:
char = "\u{0283}"
puts char # Output: ʃ
Rust:
let c = '\u{283}';
println!("{}", c); // Output: ʃ
Go:
char := '\u0283'
fmt.Printf("%c\n", char) // Output: ʃ
CSS:
/* CSS content property */
.element::before {
content: "\000283"; /* 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=%CA%83
MD5:
ece5d64a4a913c14d2ab0e920ba8f77e
SHA1:
e9bf95eaf9eb902c50a834efb3086f226dbdf2f4
Base64:
yoM=