C:
char c = '\u2027';
printf("%c\n", c); // Output: ‧
JavaScript:
const char = '\u2027';
console.log(char); // Output: ‧
Java:
char c = '\u2027';
System.out.println(c); // Output: ‧
JSON:
{"text": "\u2027"} // Value: ‧
Python:
char = '\u2027'
print(char) # Output: ‧
Perl:
my $char = "\x{2027}";
print $char; # Output: ‧
PHP:
$char = "\x{2027}";
echo $char; // Output: ‧
Ruby:
char = "\u{2027}"
puts char # Output: ‧
Rust:
let c = '\u{2027}';
println!("{}", c); // Output: ‧
Go:
char := '\u2027'
fmt.Printf("%c\n", char) // Output: ‧
CSS:
/* CSS content property */
.element::before {
content: "\002027"; /* 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=%E2%80%A7
MD5:
d02a590a77bdcb66341d8f7fe1e8561a
SHA1:
09d99d2e8e34e10f9d7c207ebd91c9df8acf41bb
Base64:
4oCn