C:
char c = '\u3026';
printf("%c\n", c); // Output: 〦
JavaScript:
const char = '\u3026';
console.log(char); // Output: 〦
Java:
char c = '\u3026';
System.out.println(c); // Output: 〦
JSON:
{"text": "\u3026"} // Value: 〦
Python:
char = '\u3026'
print(char) # Output: 〦
Perl:
my $char = "\x{3026}";
print $char; # Output: 〦
PHP:
$char = "\x{3026}";
echo $char; // Output: 〦
Ruby:
char = "\u{3026}"
puts char # Output: 〦
Rust:
let c = '\u{3026}';
println!("{}", c); // Output: 〦
Go:
char := '\u3026'
fmt.Printf("%c\n", char) // Output: 〦
CSS:
/* CSS content property */
.element::before {
content: "\003026"; /* 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=%E3%80%A6
MD5:
a06ae272911eb4053fd3d0dd486c0f8b
SHA1:
1726050f00679e0391a1c738a7a68f0a565fea21
Base64:
44Cm