C:
char c = '\u2702';
printf("%c\n", c); // Output: ✂
JavaScript:
const char = '\u2702';
console.log(char); // Output: ✂
Java:
char c = '\u2702';
System.out.println(c); // Output: ✂
JSON:
{"text": "\u2702"} // Value: ✂
Python:
char = '\u2702'
print(char) # Output: ✂
Perl:
my $char = "\x{2702}";
print $char; # Output: ✂
PHP:
$char = "\x{2702}";
echo $char; // Output: ✂
Ruby:
char = "\u{2702}"
puts char # Output: ✂
Rust:
let c = '\u{2702}';
println!("{}", c); // Output: ✂
Go:
char := '\u2702'
fmt.Printf("%c\n", char) // Output: ✂
CSS:
/* CSS content property */
.element::before {
content: "\002702"; /* 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%9C%82
MD5:
02bad0c57f0c19ca1ade62503d283581
SHA1:
b2260fdd074be81c0f5390798bcd0cd15e0a8d2e
Base64:
4pyC