C:
char c = '\u2953';
printf("%c\n", c); // Output: ⥓
JavaScript:
const char = '\u2953';
console.log(char); // Output: ⥓
Java:
char c = '\u2953';
System.out.println(c); // Output: ⥓
JSON:
{"text": "\u2953"} // Value: ⥓
Python:
char = '\u2953'
print(char) # Output: ⥓
Perl:
my $char = "\x{2953}";
print $char; # Output: ⥓
PHP:
$char = "\x{2953}";
echo $char; // Output: ⥓
Ruby:
char = "\u{2953}"
puts char # Output: ⥓
Rust:
let c = '\u{2953}';
println!("{}", c); // Output: ⥓
Go:
char := '\u2953'
fmt.Printf("%c\n", char) // Output: ⥓
CSS:
/* CSS content property */
.element::before {
content: "\002953"; /* 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%93
MD5:
18f79f56a1439c29ca8efcef98f31ef0
SHA1:
12bc5186e1d8d586d3c8390b099fcde0d6eabc76
Base64:
4qWT