C:
char c = '\u1B86';
printf("%c\n", c); // Output: ᮆ
JavaScript:
const char = '\u1B86';
console.log(char); // Output: ᮆ
Java:
char c = '\u1B86';
System.out.println(c); // Output: ᮆ
JSON:
{"text": "\u1B86"} // Value: ᮆ
Python:
char = '\u1B86'
print(char) # Output: ᮆ
Perl:
my $char = "\x{1B86}";
print $char; # Output: ᮆ
PHP:
$char = "\x{1B86}";
echo $char; // Output: ᮆ
Ruby:
char = "\u{1B86}"
puts char # Output: ᮆ
Rust:
let c = '\u{1B86}';
println!("{}", c); // Output: ᮆ
Go:
char := '\u1B86'
fmt.Printf("%c\n", char) // Output: ᮆ
CSS:
/* CSS content property */
.element::before {
content: "\001B86"; /* 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%AE%86
MD5:
bb06cff6793581e69562d155347671ea
SHA1:
2446074662f4b5eda2d54a5dd5ac575fe2687436
Base64:
4a6G