C:
char c = '\u3012';
printf("%c\n", c); // Output: 〒
JavaScript:
const char = '\u3012';
console.log(char); // Output: 〒
Java:
char c = '\u3012';
System.out.println(c); // Output: 〒
JSON:
{"text": "\u3012"} // Value: 〒
Python:
char = '\u3012'
print(char) # Output: 〒
Perl:
my $char = "\x{3012}";
print $char; # Output: 〒
PHP:
$char = "\x{3012}";
echo $char; // Output: 〒
Ruby:
char = "\u{3012}"
puts char # Output: 〒
Rust:
let c = '\u{3012}';
println!("{}", c); // Output: 〒
Go:
char := '\u3012'
fmt.Printf("%c\n", char) // Output: 〒
CSS:
/* CSS content property */
.element::before {
content: "\003012"; /* 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%92
MD5:
ebcad064020d75af5caf9014c32b53b6
SHA1:
752ad052930feb9073f6d3221418acb1b81994bb
Base64:
44CS