C:
char c = '\u29AF';
printf("%c\n", c); // Output: ⦯
JavaScript:
const char = '\u29AF';
console.log(char); // Output: ⦯
Java:
char c = '\u29AF';
System.out.println(c); // Output: ⦯
JSON:
{"text": "\u29AF"} // Value: ⦯
Python:
char = '\u29AF'
print(char) # Output: ⦯
Perl:
my $char = "\x{29AF}";
print $char; # Output: ⦯
PHP:
$char = "\x{29AF}";
echo $char; // Output: ⦯
Ruby:
char = "\u{29AF}"
puts char # Output: ⦯
Rust:
let c = '\u{29AF}';
println!("{}", c); // Output: ⦯
Go:
char := '\u29AF'
fmt.Printf("%c\n", char) // Output: ⦯
CSS:
/* CSS content property */
.element::before {
content: "\0029AF"; /* 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%AF
MD5:
f6c8ec5c2c6f9971bcd04d78b60323e6
SHA1:
39566d9042ef7df01175fc0151428b2c3bf124a4
Base64:
4qav