C:
char c = '\u1B6F';
printf("%c\n", c); // Output: ᭯
JavaScript:
const char = '\u1B6F';
console.log(char); // Output: ᭯
Java:
char c = '\u1B6F';
System.out.println(c); // Output: ᭯
JSON:
{"text": "\u1B6F"} // Value: ᭯
Python:
char = '\u1B6F'
print(char) # Output: ᭯
Perl:
my $char = "\x{1B6F}";
print $char; # Output: ᭯
PHP:
$char = "\x{1B6F}";
echo $char; // Output: ᭯
Ruby:
char = "\u{1B6F}"
puts char # Output: ᭯
Rust:
let c = '\u{1B6F}';
println!("{}", c); // Output: ᭯
Go:
char := '\u1B6F'
fmt.Printf("%c\n", char) // Output: ᭯
CSS:
/* CSS content property */
.element::before {
content: "\001B6F"; /* 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%AF
MD5:
1322bdbf8f9a450914ad91a5b354b5c0
SHA1:
930d028efebccd4a723333f2b5e8a41bbed707e4
Base64:
4a2v