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