C:
char c = '\u1C5F';
printf("%c\n", c); // Output: ᱟ
JavaScript:
const char = '\u1C5F';
console.log(char); // Output: ᱟ
Java:
char c = '\u1C5F';
System.out.println(c); // Output: ᱟ
JSON:
{"text": "\u1C5F"} // Value: ᱟ
Python:
char = '\u1C5F'
print(char) # Output: ᱟ
Perl:
my $char = "\x{1C5F}";
print $char; # Output: ᱟ
PHP:
$char = "\x{1C5F}";
echo $char; // Output: ᱟ
Ruby:
char = "\u{1C5F}"
puts char # Output: ᱟ
Rust:
let c = '\u{1C5F}';
println!("{}", c); // Output: ᱟ
Go:
char := '\u1C5F'
fmt.Printf("%c\n", char) // Output: ᱟ
CSS:
/* CSS content property */
.element::before {
content: "\001C5F"; /* 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%B1%9F
MD5:
22aba81bed946593cf3d604a6a8ff308
SHA1:
792fa629d3ae7f4d0aaa52366bcb19f165a56edc
Base64:
4bGf