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