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