C:
char c = '\u1886';
printf("%c\n", c); // Output: ᢆ
JavaScript:
const char = '\u1886';
console.log(char); // Output: ᢆ
Java:
char c = '\u1886';
System.out.println(c); // Output: ᢆ
JSON:
{"text": "\u1886"} // Value: ᢆ
Python:
char = '\u1886'
print(char) # Output: ᢆ
Perl:
my $char = "\x{1886}";
print $char; # Output: ᢆ
PHP:
$char = "\x{1886}";
echo $char; // Output: ᢆ
Ruby:
char = "\u{1886}"
puts char # Output: ᢆ
Rust:
let c = '\u{1886}';
println!("{}", c); // Output: ᢆ
Go:
char := '\u1886'
fmt.Printf("%c\n", char) // Output: ᢆ
CSS:
/* CSS content property */
.element::before {
content: "\001886"; /* 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%A2%86
MD5:
adc38dec3bc52fd6f38fe81c42f79097
SHA1:
e440c5c23631017032408043974ba41bcfc39b3e
Base64:
4aKG