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