C:
char c = '\u11F0';
printf("%c\n", c); // Output: ᇰ
JavaScript:
const char = '\u11F0';
console.log(char); // Output: ᇰ
Java:
char c = '\u11F0';
System.out.println(c); // Output: ᇰ
JSON:
{"text": "\u11F0"} // Value: ᇰ
Python:
char = '\u11F0'
print(char) # Output: ᇰ
Perl:
my $char = "\x{11F0}";
print $char; # Output: ᇰ
PHP:
$char = "\x{11F0}";
echo $char; // Output: ᇰ
Ruby:
char = "\u{11F0}"
puts char # Output: ᇰ
Rust:
let c = '\u{11F0}';
println!("{}", c); // Output: ᇰ
Go:
char := '\u11F0'
fmt.Printf("%c\n", char) // Output: ᇰ
CSS:
/* CSS content property */
.element::before {
content: "\0011F0"; /* 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%87%B0
MD5:
de5dff4a30a016f042e595172c6bab5a
SHA1:
c864875dc07c3d70a0b34030e276e1c32f7dab80
Base64:
4Yew