C:
char c = '\u2A5C';
printf("%c\n", c); // Output: ⩜
JavaScript:
const char = '\u2A5C';
console.log(char); // Output: ⩜
Java:
char c = '\u2A5C';
System.out.println(c); // Output: ⩜
JSON:
{"text": "\u2A5C"} // Value: ⩜
Python:
char = '\u2A5C'
print(char) # Output: ⩜
Perl:
my $char = "\x{2A5C}";
print $char; # Output: ⩜
PHP:
$char = "\x{2A5C}";
echo $char; // Output: ⩜
Ruby:
char = "\u{2A5C}"
puts char # Output: ⩜
Rust:
let c = '\u{2A5C}';
println!("{}", c); // Output: ⩜
Go:
char := '\u2A5C'
fmt.Printf("%c\n", char) // Output: ⩜
CSS:
/* CSS content property */
.element::before {
content: "\002A5C"; /* 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%A9%9C
MD5:
7ebe556df66091d58adbe299c33a84c7
SHA1:
8cbdbd197483abc1a1642cd1e7179a4c69924677
Base64:
4qmc