C:
char c = '\u2052';
printf("%c\n", c); // Output: ⁒
JavaScript:
const char = '\u2052';
console.log(char); // Output: ⁒
Java:
char c = '\u2052';
System.out.println(c); // Output: ⁒
JSON:
{"text": "\u2052"} // Value: ⁒
Python:
char = '\u2052'
print(char) # Output: ⁒
Perl:
my $char = "\x{2052}";
print $char; # Output: ⁒
PHP:
$char = "\x{2052}";
echo $char; // Output: ⁒
Ruby:
char = "\u{2052}"
puts char # Output: ⁒
Rust:
let c = '\u{2052}';
println!("{}", c); // Output: ⁒
Go:
char := '\u2052'
fmt.Printf("%c\n", char) // Output: ⁒
CSS:
/* CSS content property */
.element::before {
content: "\002052"; /* 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%92
MD5:
eb4624ea0a1c5269c09b3cb888a33620
SHA1:
cd7ffda9cbcb7143675cbf74bbcf9c1d355bcd19
Base64:
4oGS