C:
char c = '\u6444';
printf("%c\n", c); // Output: 摄
JavaScript:
const char = '\u6444';
console.log(char); // Output: 摄
Java:
char c = '\u6444';
System.out.println(c); // Output: 摄
JSON:
{"text": "\u6444"} // Value: 摄
Python:
char = '\u6444'
print(char) # Output: 摄
Perl:
my $char = "\x{6444}";
print $char; # Output: 摄
PHP:
$char = "\x{6444}";
echo $char; // Output: 摄
Ruby:
char = "\u{6444}"
puts char # Output: 摄
Rust:
let c = '\u{6444}';
println!("{}", c); // Output: 摄
Go:
char := '\u6444'
fmt.Printf("%c\n", char) // Output: 摄
CSS:
/* CSS content property */
.element::before {
content: "\006444"; /* 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=%E6%91%84
MD5:
d5f3a73416eaa9499bb65cee89a994dc
SHA1:
6863c4d873a890fda735e5e1372211bb8a83af0f
Base64:
5pGE