C:
char c = '\u118B';
printf("%c\n", c); // Output: ᆋ
JavaScript:
const char = '\u118B';
console.log(char); // Output: ᆋ
Java:
char c = '\u118B';
System.out.println(c); // Output: ᆋ
JSON:
{"text": "\u118B"} // Value: ᆋ
Python:
char = '\u118B'
print(char) # Output: ᆋ
Perl:
my $char = "\x{118B}";
print $char; # Output: ᆋ
PHP:
$char = "\x{118B}";
echo $char; // Output: ᆋ
Ruby:
char = "\u{118B}"
puts char # Output: ᆋ
Rust:
let c = '\u{118B}';
println!("{}", c); // Output: ᆋ
Go:
char := '\u118B'
fmt.Printf("%c\n", char) // Output: ᆋ
CSS:
/* CSS content property */
.element::before {
content: "\00118B"; /* 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%86%8B
MD5:
9e822f7c23b1d80c0d6240cd1f2d551a
SHA1:
e449f86e385a6ba8d01f714a79c0fdd8d5a32204
Base64:
4YaL