C:
char c = '\u500D';
printf("%c\n", c); // Output: 倍
JavaScript:
const char = '\u500D';
console.log(char); // Output: 倍
Java:
char c = '\u500D';
System.out.println(c); // Output: 倍
JSON:
{"text": "\u500D"} // Value: 倍
Python:
char = '\u500D'
print(char) # Output: 倍
Perl:
my $char = "\x{500D}";
print $char; # Output: 倍
PHP:
$char = "\x{500D}";
echo $char; // Output: 倍
Ruby:
char = "\u{500D}"
puts char # Output: 倍
Rust:
let c = '\u{500D}';
println!("{}", c); // Output: 倍
Go:
char := '\u500D'
fmt.Printf("%c\n", char) // Output: 倍
CSS:
/* CSS content property */
.element::before {
content: "\00500D"; /* 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=%E5%80%8D
MD5:
a9071b454b601bc837a3703ca215bc56
SHA1:
a1f58208a2e2eb8d1b726a18cf3d531413f86b22
Base64:
5YCN