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