C:
char c = '\u180A';
printf("%c\n", c); // Output: ᠊
JavaScript:
const char = '\u180A';
console.log(char); // Output: ᠊
Java:
char c = '\u180A';
System.out.println(c); // Output: ᠊
JSON:
{"text": "\u180A"} // Value: ᠊
Python:
char = '\u180A'
print(char) # Output: ᠊
Perl:
my $char = "\x{180A}";
print $char; # Output: ᠊
PHP:
$char = "\x{180A}";
echo $char; // Output: ᠊
Ruby:
char = "\u{180A}"
puts char # Output: ᠊
Rust:
let c = '\u{180A}';
println!("{}", c); // Output: ᠊
Go:
char := '\u180A'
fmt.Printf("%c\n", char) // Output: ᠊
CSS:
/* CSS content property */
.element::before {
content: "\00180A"; /* 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%A0%8A
MD5:
6267e8cfd830d26a8f0277c9764e55c6
SHA1:
c4b611c4653fe1956abd9f231a0546a3f8f2d25f
Base64:
4aCK