C:
char c = '\u1565';
printf("%c\n", c); // Output: ᕥ
JavaScript:
const char = '\u1565';
console.log(char); // Output: ᕥ
Java:
char c = '\u1565';
System.out.println(c); // Output: ᕥ
JSON:
{"text": "\u1565"} // Value: ᕥ
Python:
char = '\u1565'
print(char) # Output: ᕥ
Perl:
my $char = "\x{1565}";
print $char; # Output: ᕥ
PHP:
$char = "\x{1565}";
echo $char; // Output: ᕥ
Ruby:
char = "\u{1565}"
puts char # Output: ᕥ
Rust:
let c = '\u{1565}';
println!("{}", c); // Output: ᕥ
Go:
char := '\u1565'
fmt.Printf("%c\n", char) // Output: ᕥ
CSS:
/* CSS content property */
.element::before {
content: "\001565"; /* 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%95%A5
MD5:
9532768191634f49405adcace76cfc2b
SHA1:
87d06b88dbfa3f8185fc0d653be9062096d8b836
Base64:
4ZWl