C:
char c = '\u27BF';
printf("%c\n", c); // Output: ➿
JavaScript:
const char = '\u27BF';
console.log(char); // Output: ➿
Java:
char c = '\u27BF';
System.out.println(c); // Output: ➿
JSON:
{"text": "\u27BF"} // Value: ➿
Python:
char = '\u27BF'
print(char) # Output: ➿
Perl:
my $char = "\x{27BF}";
print $char; # Output: ➿
PHP:
$char = "\x{27BF}";
echo $char; // Output: ➿
Ruby:
char = "\u{27BF}"
puts char # Output: ➿
Rust:
let c = '\u{27BF}';
println!("{}", c); // Output: ➿
Go:
char := '\u27BF'
fmt.Printf("%c\n", char) // Output: ➿
CSS:
/* CSS content property */
.element::before {
content: "\0027BF"; /* 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%9E%BF
MD5:
32816f24c6297d6a06c50bebabe2cfd2
SHA1:
bde8d66020d912b9bfe5cf750c5f38a2d41d22af
Base64:
4p6/