C:
char c = '\u5762';
printf("%c\n", c); // Output: 坢
JavaScript:
const char = '\u5762';
console.log(char); // Output: 坢
Java:
char c = '\u5762';
System.out.println(c); // Output: 坢
JSON:
{"text": "\u5762"} // Value: 坢
Python:
char = '\u5762'
print(char) # Output: 坢
Perl:
my $char = "\x{5762}";
print $char; # Output: 坢
PHP:
$char = "\x{5762}";
echo $char; // Output: 坢
Ruby:
char = "\u{5762}"
puts char # Output: 坢
Rust:
let c = '\u{5762}';
println!("{}", c); // Output: 坢
Go:
char := '\u5762'
fmt.Printf("%c\n", char) // Output: 坢
CSS:
/* CSS content property */
.element::before {
content: "\005762"; /* 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%A2
MD5:
b3dc9b1d45bbdf7d269a72af6c68248b
SHA1:
64bb399006a89e398e9ad03ab8242552ae051732
Base64:
5Z2i