C:
char c = '\u2D5F';
printf("%c\n", c); // Output: ⵟ
JavaScript:
const char = '\u2D5F';
console.log(char); // Output: ⵟ
Java:
char c = '\u2D5F';
System.out.println(c); // Output: ⵟ
JSON:
{"text": "\u2D5F"} // Value: ⵟ
Python:
char = '\u2D5F'
print(char) # Output: ⵟ
Perl:
my $char = "\x{2D5F}";
print $char; # Output: ⵟ
PHP:
$char = "\x{2D5F}";
echo $char; // Output: ⵟ
Ruby:
char = "\u{2D5F}"
puts char # Output: ⵟ
Rust:
let c = '\u{2D5F}';
println!("{}", c); // Output: ⵟ
Go:
char := '\u2D5F'
fmt.Printf("%c\n", char) // Output: ⵟ
CSS:
/* CSS content property */
.element::before {
content: "\002D5F"; /* 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%B5%9F
MD5:
2154ac644de25195771880e8b0aab260
SHA1:
5b7dc53bc858ebfbe9cd40d18888c3d4956f3f6d
Base64:
4rWf