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