C:
char c = '\u29CF';
printf("%c\n", c); // Output: ⧏
JavaScript:
const char = '\u29CF';
console.log(char); // Output: ⧏
Java:
char c = '\u29CF';
System.out.println(c); // Output: ⧏
JSON:
{"text": "\u29CF"} // Value: ⧏
Python:
char = '\u29CF'
print(char) # Output: ⧏
Perl:
my $char = "\x{29CF}";
print $char; # Output: ⧏
PHP:
$char = "\x{29CF}";
echo $char; // Output: ⧏
Ruby:
char = "\u{29CF}"
puts char # Output: ⧏
Rust:
let c = '\u{29CF}';
println!("{}", c); // Output: ⧏
Go:
char := '\u29CF'
fmt.Printf("%c\n", char) // Output: ⧏
CSS:
/* CSS content property */
.element::before {
content: "\0029CF"; /* 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%A7%8F
MD5:
5e7f18a99552c7bff714d988b98de489
SHA1:
7fe87b8d7772762682992ba5e8f4a542318321e5
Base64:
4qeP