C:
char c = '\u1BE6';
printf("%c\n", c); // Output: ᯦
JavaScript:
const char = '\u1BE6';
console.log(char); // Output: ᯦
Java:
char c = '\u1BE6';
System.out.println(c); // Output: ᯦
JSON:
{"text": "\u1BE6"} // Value: ᯦
Python:
char = '\u1BE6'
print(char) # Output: ᯦
Perl:
my $char = "\x{1BE6}";
print $char; # Output: ᯦
PHP:
$char = "\x{1BE6}";
echo $char; // Output: ᯦
Ruby:
char = "\u{1BE6}"
puts char # Output: ᯦
Rust:
let c = '\u{1BE6}';
println!("{}", c); // Output: ᯦
Go:
char := '\u1BE6'
fmt.Printf("%c\n", char) // Output: ᯦
CSS:
/* CSS content property */
.element::before {
content: "\001BE6"; /* 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%AF%A6
MD5:
602007977f09a4cb5e43dfa688377bfe
SHA1:
e1200cdf919de5fee6400dc68029012d49b3d80b
Base64:
4a+m