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