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