C:
char c = '\u2943';
printf("%c\n", c); // Output: ⥃
JavaScript:
const char = '\u2943';
console.log(char); // Output: ⥃
Java:
char c = '\u2943';
System.out.println(c); // Output: ⥃
JSON:
{"text": "\u2943"} // Value: ⥃
Python:
char = '\u2943'
print(char) # Output: ⥃
Perl:
my $char = "\x{2943}";
print $char; # Output: ⥃
PHP:
$char = "\x{2943}";
echo $char; // Output: ⥃
Ruby:
char = "\u{2943}"
puts char # Output: ⥃
Rust:
let c = '\u{2943}';
println!("{}", c); // Output: ⥃
Go:
char := '\u2943'
fmt.Printf("%c\n", char) // Output: ⥃
CSS:
/* CSS content property */
.element::before {
content: "\002943"; /* 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%A5%83
MD5:
acdd6f5788b8f38eb0a4c96fe8d49ace
SHA1:
2434bdd8c11a2a50c99cb6c282fe3e53ceb39419
Base64:
4qWD