C:
char c = '\u298F';
printf("%c\n", c); // Output: ⦏
JavaScript:
const char = '\u298F';
console.log(char); // Output: ⦏
Java:
char c = '\u298F';
System.out.println(c); // Output: ⦏
JSON:
{"text": "\u298F"} // Value: ⦏
Python:
char = '\u298F'
print(char) # Output: ⦏
Perl:
my $char = "\x{298F}";
print $char; # Output: ⦏
PHP:
$char = "\x{298F}";
echo $char; // Output: ⦏
Ruby:
char = "\u{298F}"
puts char # Output: ⦏
Rust:
let c = '\u{298F}';
println!("{}", c); // Output: ⦏
Go:
char := '\u298F'
fmt.Printf("%c\n", char) // Output: ⦏
CSS:
/* CSS content property */
.element::before {
content: "\00298F"; /* 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%A6%8F
MD5:
a175f7b5af11fa38e711b21188d6cacf
SHA1:
fd7fee7d0522ddf09d4b31c05c162620680a5e37
Base64:
4qaP