C:
char c = '\u271F';
printf("%c\n", c); // Output: ✟
JavaScript:
const char = '\u271F';
console.log(char); // Output: ✟
Java:
char c = '\u271F';
System.out.println(c); // Output: ✟
JSON:
{"text": "\u271F"} // Value: ✟
Python:
char = '\u271F'
print(char) # Output: ✟
Perl:
my $char = "\x{271F}";
print $char; # Output: ✟
PHP:
$char = "\x{271F}";
echo $char; // Output: ✟
Ruby:
char = "\u{271F}"
puts char # Output: ✟
Rust:
let c = '\u{271F}';
println!("{}", c); // Output: ✟
Go:
char := '\u271F'
fmt.Printf("%c\n", char) // Output: ✟
CSS:
/* CSS content property */
.element::before {
content: "\00271F"; /* 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%9F
MD5:
254592c07b60d4649dbcaa3434de4e2a
SHA1:
277a76f31f8455eab810c60c7ad8ea94bd031a56
Base64:
4pyf