C:
char c = '\u02A3';
printf("%c\n", c); // Output: ʣ
JavaScript:
const char = '\u02A3';
console.log(char); // Output: ʣ
Java:
char c = '\u02A3';
System.out.println(c); // Output: ʣ
JSON:
{"text": "\u02A3"} // Value: ʣ
Python:
char = '\u02A3'
print(char) # Output: ʣ
Perl:
my $char = "\x{02A3}";
print $char; # Output: ʣ
PHP:
$char = "\x{02A3}";
echo $char; // Output: ʣ
Ruby:
char = "\u{02A3}"
puts char # Output: ʣ
Rust:
let c = '\u{2A3}';
println!("{}", c); // Output: ʣ
Go:
char := '\u02A3'
fmt.Printf("%c\n", char) // Output: ʣ
CSS:
/* CSS content property */
.element::before {
content: "\0002A3"; /* 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%A3
MD5:
50e40afd3b371f21dcf816b018263106
SHA1:
f75621108cdeef1f67a8514a918c0b4fe25786ca
Base64:
yqM=