C:
char c = '\u578D';
printf("%c\n", c); // Output: 垍
JavaScript:
const char = '\u578D';
console.log(char); // Output: 垍
Java:
char c = '\u578D';
System.out.println(c); // Output: 垍
JSON:
{"text": "\u578D"} // Value: 垍
Python:
char = '\u578D'
print(char) # Output: 垍
Perl:
my $char = "\x{578D}";
print $char; # Output: 垍
PHP:
$char = "\x{578D}";
echo $char; // Output: 垍
Ruby:
char = "\u{578D}"
puts char # Output: 垍
Rust:
let c = '\u{578D}';
println!("{}", c); // Output: 垍
Go:
char := '\u578D'
fmt.Printf("%c\n", char) // Output: 垍
CSS:
/* CSS content property */
.element::before {
content: "\00578D"; /* 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%9E%8D
MD5:
79e99d4d41a3160ec5143bf204df4d93
SHA1:
169a5905b9c928edcf07fc3a15b06cdec1efc5f4
Base64:
5Z6N