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