C:
char c = '\u2031';
printf("%c\n", c); // Output: ‱
JavaScript:
const char = '\u2031';
console.log(char); // Output: ‱
Java:
char c = '\u2031';
System.out.println(c); // Output: ‱
JSON:
{"text": "\u2031"} // Value: ‱
Python:
char = '\u2031'
print(char) # Output: ‱
Perl:
my $char = "\x{2031}";
print $char; # Output: ‱
PHP:
$char = "\x{2031}";
echo $char; // Output: ‱
Ruby:
char = "\u{2031}"
puts char # Output: ‱
Rust:
let c = '\u{2031}';
println!("{}", c); // Output: ‱
Go:
char := '\u2031'
fmt.Printf("%c\n", char) // Output: ‱
CSS:
/* CSS content property */
.element::before {
content: "\002031"; /* 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%B1
MD5:
5859704cdeb3ac3be77ce6e263f42069
SHA1:
dd4bc98fc96f1fec6082175dd4c4eb2d82b2eb20
Base64:
4oCx