C:
char c = '\u186F';
printf("%c\n", c); // Output: ᡯ
JavaScript:
const char = '\u186F';
console.log(char); // Output: ᡯ
Java:
char c = '\u186F';
System.out.println(c); // Output: ᡯ
JSON:
{"text": "\u186F"} // Value: ᡯ
Python:
char = '\u186F'
print(char) # Output: ᡯ
Perl:
my $char = "\x{186F}";
print $char; # Output: ᡯ
PHP:
$char = "\x{186F}";
echo $char; // Output: ᡯ
Ruby:
char = "\u{186F}"
puts char # Output: ᡯ
Rust:
let c = '\u{186F}';
println!("{}", c); // Output: ᡯ
Go:
char := '\u186F'
fmt.Printf("%c\n", char) // Output: ᡯ
CSS:
/* CSS content property */
.element::before {
content: "\00186F"; /* 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%A1%AF
MD5:
16cbb80b60ff8f37d7b216f1586bab76
SHA1:
99bd7b4f54fe51abe52192340b7a32fa258e83ba
Base64:
4aGv