C:
char c = '\u2932';
printf("%c\n", c); // Output: ⤲
JavaScript:
const char = '\u2932';
console.log(char); // Output: ⤲
Java:
char c = '\u2932';
System.out.println(c); // Output: ⤲
JSON:
{"text": "\u2932"} // Value: ⤲
Python:
char = '\u2932'
print(char) # Output: ⤲
Perl:
my $char = "\x{2932}";
print $char; # Output: ⤲
PHP:
$char = "\x{2932}";
echo $char; // Output: ⤲
Ruby:
char = "\u{2932}"
puts char # Output: ⤲
Rust:
let c = '\u{2932}';
println!("{}", c); // Output: ⤲
Go:
char := '\u2932'
fmt.Printf("%c\n", char) // Output: ⤲
CSS:
/* CSS content property */
.element::before {
content: "\002932"; /* 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%B2
MD5:
dc97efaddb1b3b91ee89cd6d2e268f62
SHA1:
87cdadcd3e6b0241ad74e5fe0106820a6821741c
Base64:
4qSy