C:
char c = '\u138B';
printf("%c\n", c); // Output: ᎋ
JavaScript:
const char = '\u138B';
console.log(char); // Output: ᎋ
Java:
char c = '\u138B';
System.out.println(c); // Output: ᎋ
JSON:
{"text": "\u138B"} // Value: ᎋ
Python:
char = '\u138B'
print(char) # Output: ᎋ
Perl:
my $char = "\x{138B}";
print $char; # Output: ᎋ
PHP:
$char = "\x{138B}";
echo $char; // Output: ᎋ
Ruby:
char = "\u{138B}"
puts char # Output: ᎋ
Rust:
let c = '\u{138B}';
println!("{}", c); // Output: ᎋ
Go:
char := '\u138B'
fmt.Printf("%c\n", char) // Output: ᎋ
CSS:
/* CSS content property */
.element::before {
content: "\00138B"; /* 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%8B
MD5:
687f9ac812286a339d28574972ae152c
SHA1:
53cb54f3cc31a43de43631eddb00ffcf894c4d45
Base64:
4Y6L