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