C:
char c = '\u3006';
printf("%c\n", c); // Output: 〆
JavaScript:
const char = '\u3006';
console.log(char); // Output: 〆
Java:
char c = '\u3006';
System.out.println(c); // Output: 〆
JSON:
{"text": "\u3006"} // Value: 〆
Python:
char = '\u3006'
print(char) # Output: 〆
Perl:
my $char = "\x{3006}";
print $char; # Output: 〆
PHP:
$char = "\x{3006}";
echo $char; // Output: 〆
Ruby:
char = "\u{3006}"
puts char # Output: 〆
Rust:
let c = '\u{3006}';
println!("{}", c); // Output: 〆
Go:
char := '\u3006'
fmt.Printf("%c\n", char) // Output: 〆
CSS:
/* CSS content property */
.element::before {
content: "\003006"; /* 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%86
MD5:
17b40150770dd5e6fa3b48e8b63a833d
SHA1:
429264c37970539ff024d548e75168129ab0bbef
Base64:
44CG