C:
char c = '\u2902';
printf("%c\n", c); // Output: ⤂
JavaScript:
const char = '\u2902';
console.log(char); // Output: ⤂
Java:
char c = '\u2902';
System.out.println(c); // Output: ⤂
JSON:
{"text": "\u2902"} // Value: ⤂
Python:
char = '\u2902'
print(char) # Output: ⤂
Perl:
my $char = "\x{2902}";
print $char; # Output: ⤂
PHP:
$char = "\x{2902}";
echo $char; // Output: ⤂
Ruby:
char = "\u{2902}"
puts char # Output: ⤂
Rust:
let c = '\u{2902}';
println!("{}", c); // Output: ⤂
Go:
char := '\u2902'
fmt.Printf("%c\n", char) // Output: ⤂
CSS:
/* CSS content property */
.element::before {
content: "\002902"; /* 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%A4%82
MD5:
099552bf45a8db73b42e12e8571fbaad
SHA1:
5c16983c05afb791c2760435961f2222322499b3
Base64:
4qSC