C:
char c = '\u27F1';
printf("%c\n", c); // Output: ⟱
JavaScript:
const char = '\u27F1';
console.log(char); // Output: ⟱
Java:
char c = '\u27F1';
System.out.println(c); // Output: ⟱
JSON:
{"text": "\u27F1"} // Value: ⟱
Python:
char = '\u27F1'
print(char) # Output: ⟱
Perl:
my $char = "\x{27F1}";
print $char; # Output: ⟱
PHP:
$char = "\x{27F1}";
echo $char; // Output: ⟱
Ruby:
char = "\u{27F1}"
puts char # Output: ⟱
Rust:
let c = '\u{27F1}';
println!("{}", c); // Output: ⟱
Go:
char := '\u27F1'
fmt.Printf("%c\n", char) // Output: ⟱
CSS:
/* CSS content property */
.element::before {
content: "\0027F1"; /* 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%9F%B1
MD5:
33852bc1a92a39abc2d3e545d6504141
SHA1:
5a1f0190347cf6c4c5ced6c32b2c07b7c949a85e
Base64:
4p+x