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