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