C:
char c = '\u1515';
printf("%c\n", c); // Output: ᔕ
JavaScript:
const char = '\u1515';
console.log(char); // Output: ᔕ
Java:
char c = '\u1515';
System.out.println(c); // Output: ᔕ
JSON:
{"text": "\u1515"} // Value: ᔕ
Python:
char = '\u1515'
print(char) # Output: ᔕ
Perl:
my $char = "\x{1515}";
print $char; # Output: ᔕ
PHP:
$char = "\x{1515}";
echo $char; // Output: ᔕ
Ruby:
char = "\u{1515}"
puts char # Output: ᔕ
Rust:
let c = '\u{1515}';
println!("{}", c); // Output: ᔕ
Go:
char := '\u1515'
fmt.Printf("%c\n", char) // Output: ᔕ
CSS:
/* CSS content property */
.element::before {
content: "\001515"; /* 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=%E1%94%95
MD5:
25342c8d8c59d3024626d548a96600c5
SHA1:
7320b6b5d1ec0b21db9d94a14bf8fc7d4c1f21e1
Base64:
4ZSV