C:
char c = '\u2029';
printf("%c\n", c); // Output:
JavaScript:
const char = '\u2029';
console.log(char); // Output:
Java:
char c = '\u2029';
System.out.println(c); // Output:
JSON:
{"text": "\u2029"} // Value:
Python:
char = '\u2029'
print(char) # Output:
Perl:
my $char = "\x{2029}";
print $char; # Output:
PHP:
$char = "\x{2029}";
echo $char; // Output:
Ruby:
char = "\u{2029}"
puts char # Output:
Rust:
let c = '\u{2029}';
println!("{}", c); // Output:
Go:
char := '\u2029'
fmt.Printf("%c\n", char) // Output:
CSS:
/* CSS content property */
.element::before {
content: "\002029"; /* 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%80%A9
MD5:
09027cdf903ff3fd44dfa3bbe1e8a02b
SHA1:
bad6b315542d2df789cbd9089d3df8b8b287ab49
Base64:
4oCp