C:
char c = '\uFE2D';
printf("%c\n", c); // Output: ︭
JavaScript:
const char = '\uFE2D';
console.log(char); // Output: ︭
Java:
char c = '\uFE2D';
System.out.println(c); // Output: ︭
JSON:
{"text": "\uFE2D"} // Value: ︭
Python:
char = '\uFE2D'
print(char) # Output: ︭
Perl:
my $char = "\x{FE2D}";
print $char; # Output: ︭
PHP:
$char = "\x{FE2D}";
echo $char; // Output: ︭
Ruby:
char = "\u{FE2D}"
puts char # Output: ︭
Rust:
let c = '\u{FE2D}';
println!("{}", c); // Output: ︭
Go:
char := '\uFE2D'
fmt.Printf("%c\n", char) // Output: ︭
CSS:
/* CSS content property */
.element::before {
content: "\00FE2D"; /* 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%AD
MD5:
f4cc1e0c62a1b6f9a0558ab8a11c223e
SHA1:
605c5d2f8fa08ee8203249c57fd67ab9fb6a693e
Base64:
77it