C:
char c = '\u2DE5';
printf("%c\n", c); // Output: ⷥ
JavaScript:
const char = '\u2DE5';
console.log(char); // Output: ⷥ
Java:
char c = '\u2DE5';
System.out.println(c); // Output: ⷥ
JSON:
{"text": "\u2DE5"} // Value: ⷥ
Python:
char = '\u2DE5'
print(char) # Output: ⷥ
Perl:
my $char = "\x{2DE5}";
print $char; # Output: ⷥ
PHP:
$char = "\x{2DE5}";
echo $char; // Output: ⷥ
Ruby:
char = "\u{2DE5}"
puts char # Output: ⷥ
Rust:
let c = '\u{2DE5}';
println!("{}", c); // Output: ⷥ
Go:
char := '\u2DE5'
fmt.Printf("%c\n", char) // Output: ⷥ
CSS:
/* CSS content property */
.element::before {
content: "\002DE5"; /* 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%B7%A5
MD5:
0a01e6e3b2d545932e3a362318090177
SHA1:
57564cf911740431d10de0e79f3e88ac2eaf59ce
Base64:
4rel