C:
char c = '\u5767';
printf("%c\n", c); // Output: 坧
JavaScript:
const char = '\u5767';
console.log(char); // Output: 坧
Java:
char c = '\u5767';
System.out.println(c); // Output: 坧
JSON:
{"text": "\u5767"} // Value: 坧
Python:
char = '\u5767'
print(char) # Output: 坧
Perl:
my $char = "\x{5767}";
print $char; # Output: 坧
PHP:
$char = "\x{5767}";
echo $char; // Output: 坧
Ruby:
char = "\u{5767}"
puts char # Output: 坧
Rust:
let c = '\u{5767}';
println!("{}", c); // Output: 坧
Go:
char := '\u5767'
fmt.Printf("%c\n", char) // Output: 坧
CSS:
/* CSS content property */
.element::before {
content: "\005767"; /* 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%A7
MD5:
ceb90afcc2f9ae70ff3cb807eabb9b28
SHA1:
32fb81c4fa3f0ff8d521bd24af7f53af1982dea7
Base64:
5Z2n