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