C:
char c = '\u1395';
printf("%c\n", c); // Output: ᎕
JavaScript:
const char = '\u1395';
console.log(char); // Output: ᎕
Java:
char c = '\u1395';
System.out.println(c); // Output: ᎕
JSON:
{"text": "\u1395"} // Value: ᎕
Python:
char = '\u1395'
print(char) # Output: ᎕
Perl:
my $char = "\x{1395}";
print $char; # Output: ᎕
PHP:
$char = "\x{1395}";
echo $char; // Output: ᎕
Ruby:
char = "\u{1395}"
puts char # Output: ᎕
Rust:
let c = '\u{1395}';
println!("{}", c); // Output: ᎕
Go:
char := '\u1395'
fmt.Printf("%c\n", char) // Output: ᎕
CSS:
/* CSS content property */
.element::before {
content: "\001395"; /* 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%8E%95
MD5:
e85971f0256a943cbef68dab1b3a7790
SHA1:
a135298f84552eaff9c5550b51010ea2df26f211
Base64:
4Y6V