C:
char c = '\u2BC7';
printf("%c\n", c); // Output: ⯇
JavaScript:
const char = '\u2BC7';
console.log(char); // Output: ⯇
Java:
char c = '\u2BC7';
System.out.println(c); // Output: ⯇
JSON:
{"text": "\u2BC7"} // Value: ⯇
Python:
char = '\u2BC7'
print(char) # Output: ⯇
Perl:
my $char = "\x{2BC7}";
print $char; # Output: ⯇
PHP:
$char = "\x{2BC7}";
echo $char; // Output: ⯇
Ruby:
char = "\u{2BC7}"
puts char # Output: ⯇
Rust:
let c = '\u{2BC7}';
println!("{}", c); // Output: ⯇
Go:
char := '\u2BC7'
fmt.Printf("%c\n", char) // Output: ⯇
CSS:
/* CSS content property */
.element::before {
content: "\002BC7"; /* 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%AF%87
MD5:
5d84f66be4d70f0f8884c6379ca97f95
SHA1:
8900dc98581babe36f0d62d52970e30db02de79d
Base64:
4q+H