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