C:
char c = '\u1388';
printf("%c\n", c); // Output: ᎈ
JavaScript:
const char = '\u1388';
console.log(char); // Output: ᎈ
Java:
char c = '\u1388';
System.out.println(c); // Output: ᎈ
JSON:
{"text": "\u1388"} // Value: ᎈ
Python:
char = '\u1388'
print(char) # Output: ᎈ
Perl:
my $char = "\x{1388}";
print $char; # Output: ᎈ
PHP:
$char = "\x{1388}";
echo $char; // Output: ᎈ
Ruby:
char = "\u{1388}"
puts char # Output: ᎈ
Rust:
let c = '\u{1388}';
println!("{}", c); // Output: ᎈ
Go:
char := '\u1388'
fmt.Printf("%c\n", char) // Output: ᎈ
CSS:
/* CSS content property */
.element::before {
content: "\001388"; /* 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%88
MD5:
f801d0d63226a26ca57a60281850523b
SHA1:
c980368abf429ff0a35430fcc40bf9cf1bff38b7
Base64:
4Y6I