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