C:
char c = '\u5772';
printf("%c\n", c); // Output: 坲
JavaScript:
const char = '\u5772';
console.log(char); // Output: 坲
Java:
char c = '\u5772';
System.out.println(c); // Output: 坲
JSON:
{"text": "\u5772"} // Value: 坲
Python:
char = '\u5772'
print(char) # Output: 坲
Perl:
my $char = "\x{5772}";
print $char; # Output: 坲
PHP:
$char = "\x{5772}";
echo $char; // Output: 坲
Ruby:
char = "\u{5772}"
puts char # Output: 坲
Rust:
let c = '\u{5772}';
println!("{}", c); // Output: 坲
Go:
char := '\u5772'
fmt.Printf("%c\n", char) // Output: 坲
CSS:
/* CSS content property */
.element::before {
content: "\005772"; /* 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%B2
MD5:
1f1e197e341606f44104fad59f10470d
SHA1:
e6b3b0f5a18f4f5d7987f063e613b54107c0a09d
Base64:
5Z2y