C:
char c = '\u21BF';
printf("%c\n", c); // Output: ↿
JavaScript:
const char = '\u21BF';
console.log(char); // Output: ↿
Java:
char c = '\u21BF';
System.out.println(c); // Output: ↿
JSON:
{"text": "\u21BF"} // Value: ↿
Python:
char = '\u21BF'
print(char) # Output: ↿
Perl:
my $char = "\x{21BF}";
print $char; # Output: ↿
PHP:
$char = "\x{21BF}";
echo $char; // Output: ↿
Ruby:
char = "\u{21BF}"
puts char # Output: ↿
Rust:
let c = '\u{21BF}';
println!("{}", c); // Output: ↿
Go:
char := '\u21BF'
fmt.Printf("%c\n", char) // Output: ↿
CSS:
/* CSS content property */
.element::before {
content: "\0021BF"; /* 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%86%BF
MD5:
0dd4e3eb5d74c3cbf6cd70f7d54b78b3
SHA1:
b517c9066883ef5e7bebbfce5abd5b4ddf17681d
Base64:
4oa/