C:
char c = '\u575D';
printf("%c\n", c); // Output: 坝
JavaScript:
const char = '\u575D';
console.log(char); // Output: 坝
Java:
char c = '\u575D';
System.out.println(c); // Output: 坝
JSON:
{"text": "\u575D"} // Value: 坝
Python:
char = '\u575D'
print(char) # Output: 坝
Perl:
my $char = "\x{575D}";
print $char; # Output: 坝
PHP:
$char = "\x{575D}";
echo $char; // Output: 坝
Ruby:
char = "\u{575D}"
puts char # Output: 坝
Rust:
let c = '\u{575D}';
println!("{}", c); // Output: 坝
Go:
char := '\u575D'
fmt.Printf("%c\n", char) // Output: 坝
CSS:
/* CSS content property */
.element::before {
content: "\00575D"; /* 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%9D%9D
MD5:
5e99bcd68e3dd3e68c7d81b9741ddb44
SHA1:
846f45d317593aa86a7a6171d5402080ecec4fd6
Base64:
5Z2d