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