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