C:
char c = '\u3009';
printf("%c\n", c); // Output: 〉
JavaScript:
const char = '\u3009';
console.log(char); // Output: 〉
Java:
char c = '\u3009';
System.out.println(c); // Output: 〉
JSON:
{"text": "\u3009"} // Value: 〉
Python:
char = '\u3009'
print(char) # Output: 〉
Perl:
my $char = "\x{3009}";
print $char; # Output: 〉
PHP:
$char = "\x{3009}";
echo $char; // Output: 〉
Ruby:
char = "\u{3009}"
puts char # Output: 〉
Rust:
let c = '\u{3009}';
println!("{}", c); // Output: 〉
Go:
char := '\u3009'
fmt.Printf("%c\n", char) // Output: 〉
CSS:
/* CSS content property */
.element::before {
content: "\003009"; /* 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%89
MD5:
8d221feeb4c0ac5c688c596f05b216a4
SHA1:
eeee14afadc289661037ca400230042d5f3529e4
Base64:
44CJ