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