C:
char c = '\u2059';
printf("%c\n", c); // Output: ⁙
JavaScript:
const char = '\u2059';
console.log(char); // Output: ⁙
Java:
char c = '\u2059';
System.out.println(c); // Output: ⁙
JSON:
{"text": "\u2059"} // Value: ⁙
Python:
char = '\u2059'
print(char) # Output: ⁙
Perl:
my $char = "\x{2059}";
print $char; # Output: ⁙
PHP:
$char = "\x{2059}";
echo $char; // Output: ⁙
Ruby:
char = "\u{2059}"
puts char # Output: ⁙
Rust:
let c = '\u{2059}';
println!("{}", c); // Output: ⁙
Go:
char := '\u2059'
fmt.Printf("%c\n", char) // Output: ⁙
CSS:
/* CSS content property */
.element::before {
content: "\002059"; /* 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=%E2%81%99
MD5:
eac54769a8ab27d1c85b38bfeae9a1bf
SHA1:
85bbea8067e548898a46722cf549943c6e6f2154
Base64:
4oGZ