C:
char c = '\u183F';
printf("%c\n", c); // Output: ᠿ
JavaScript:
const char = '\u183F';
console.log(char); // Output: ᠿ
Java:
char c = '\u183F';
System.out.println(c); // Output: ᠿ
JSON:
{"text": "\u183F"} // Value: ᠿ
Python:
char = '\u183F'
print(char) # Output: ᠿ
Perl:
my $char = "\x{183F}";
print $char; # Output: ᠿ
PHP:
$char = "\x{183F}";
echo $char; // Output: ᠿ
Ruby:
char = "\u{183F}"
puts char # Output: ᠿ
Rust:
let c = '\u{183F}';
println!("{}", c); // Output: ᠿ
Go:
char := '\u183F'
fmt.Printf("%c\n", char) // Output: ᠿ
CSS:
/* CSS content property */
.element::before {
content: "\00183F"; /* 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%BF
MD5:
fcb443934bf69c2ff756b10f7f885636
SHA1:
905a5c3a4631393b0d5a4ee3eb14a5c2321ecb1b
Base64:
4aC/