C:
char c = '\u2960';
printf("%c\n", c); // Output: ⥠
JavaScript:
const char = '\u2960';
console.log(char); // Output: ⥠
Java:
char c = '\u2960';
System.out.println(c); // Output: ⥠
JSON:
{"text": "\u2960"} // Value: ⥠
Python:
char = '\u2960'
print(char) # Output: ⥠
Perl:
my $char = "\x{2960}";
print $char; # Output: ⥠
PHP:
$char = "\x{2960}";
echo $char; // Output: ⥠
Ruby:
char = "\u{2960}"
puts char # Output: ⥠
Rust:
let c = '\u{2960}';
println!("{}", c); // Output: ⥠
Go:
char := '\u2960'
fmt.Printf("%c\n", char) // Output: ⥠
CSS:
/* CSS content property */
.element::before {
content: "\002960"; /* 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%A0
MD5:
cd5428c5f570fb0bd9e3717ed5f90ad4
SHA1:
f6fb22f253f42501b645c3246b0b31e1032661eb
Base64:
4qWg