C:
char c = '\u5761';
printf("%c\n", c); // Output: 坡
JavaScript:
const char = '\u5761';
console.log(char); // Output: 坡
Java:
char c = '\u5761';
System.out.println(c); // Output: 坡
JSON:
{"text": "\u5761"} // Value: 坡
Python:
char = '\u5761'
print(char) # Output: 坡
Perl:
my $char = "\x{5761}";
print $char; # Output: 坡
PHP:
$char = "\x{5761}";
echo $char; // Output: 坡
Ruby:
char = "\u{5761}"
puts char # Output: 坡
Rust:
let c = '\u{5761}';
println!("{}", c); // Output: 坡
Go:
char := '\u5761'
fmt.Printf("%c\n", char) // Output: 坡
CSS:
/* CSS content property */
.element::before {
content: "\005761"; /* 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%A1
MD5:
17f4f2d9fe55c4fb95cb35c42292d2eb
SHA1:
a2249a70f64de365a3742b0760c2681731260355
Base64:
5Z2h