C:
char c = '\u27CF';
printf("%c\n", c); // Output: ⟏
JavaScript:
const char = '\u27CF';
console.log(char); // Output: ⟏
Java:
char c = '\u27CF';
System.out.println(c); // Output: ⟏
JSON:
{"text": "\u27CF"} // Value: ⟏
Python:
char = '\u27CF'
print(char) # Output: ⟏
Perl:
my $char = "\x{27CF}";
print $char; # Output: ⟏
PHP:
$char = "\x{27CF}";
echo $char; // Output: ⟏
Ruby:
char = "\u{27CF}"
puts char # Output: ⟏
Rust:
let c = '\u{27CF}';
println!("{}", c); // Output: ⟏
Go:
char := '\u27CF'
fmt.Printf("%c\n", char) // Output: ⟏
CSS:
/* CSS content property */
.element::before {
content: "\0027CF"; /* 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%9F%8F
MD5:
b27c0f656494a58a70722dc6e8ab75d5
SHA1:
5ca124cd24476620d9fef007a5cdd4324288bb58
Base64:
4p+P