C:
char c = '\uFE2C';
printf("%c\n", c); // Output: ︬
JavaScript:
const char = '\uFE2C';
console.log(char); // Output: ︬
Java:
char c = '\uFE2C';
System.out.println(c); // Output: ︬
JSON:
{"text": "\uFE2C"} // Value: ︬
Python:
char = '\uFE2C'
print(char) # Output: ︬
Perl:
my $char = "\x{FE2C}";
print $char; # Output: ︬
PHP:
$char = "\x{FE2C}";
echo $char; // Output: ︬
Ruby:
char = "\u{FE2C}"
puts char # Output: ︬
Rust:
let c = '\u{FE2C}';
println!("{}", c); // Output: ︬
Go:
char := '\uFE2C'
fmt.Printf("%c\n", char) // Output: ︬
CSS:
/* CSS content property */
.element::before {
content: "\00FE2C"; /* 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=%EF%B8%AC
MD5:
d913ca24d16ec5195311200e1fb96da1
SHA1:
9f2a65c6133c11ae2dc387b095afb802211a6201
Base64:
77is