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