C:
char c = '\u300D';
printf("%c\n", c); // Output: 」
JavaScript:
const char = '\u300D';
console.log(char); // Output: 」
Java:
char c = '\u300D';
System.out.println(c); // Output: 」
JSON:
{"text": "\u300D"} // Value: 」
Python:
char = '\u300D'
print(char) # Output: 」
Perl:
my $char = "\x{300D}";
print $char; # Output: 」
PHP:
$char = "\x{300D}";
echo $char; // Output: 」
Ruby:
char = "\u{300D}"
puts char # Output: 」
Rust:
let c = '\u{300D}';
println!("{}", c); // Output: 」
Go:
char := '\u300D'
fmt.Printf("%c\n", char) // Output: 」
CSS:
/* CSS content property */
.element::before {
content: "\00300D"; /* 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%8D
MD5:
83b6d347ffd1292357c338032cfb26bf
SHA1:
4c02bd0591a54da8e122dafaed191a17910e95a6
Base64:
44CN