C:
char c = '\u7CAC';
printf("%c\n", c); // Output: 粬
JavaScript:
const char = '\u7CAC';
console.log(char); // Output: 粬
Java:
char c = '\u7CAC';
System.out.println(c); // Output: 粬
JSON:
{"text": "\u7CAC"} // Value: 粬
Python:
char = '\u7CAC'
print(char) # Output: 粬
Perl:
my $char = "\x{7CAC}";
print $char; # Output: 粬
PHP:
$char = "\x{7CAC}";
echo $char; // Output: 粬
Ruby:
char = "\u{7CAC}"
puts char # Output: 粬
Rust:
let c = '\u{7CAC}';
println!("{}", c); // Output: 粬
Go:
char := '\u7CAC'
fmt.Printf("%c\n", char) // Output: 粬
CSS:
/* CSS content property */
.element::before {
content: "\007CAC"; /* 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=%E7%B2%AC
MD5:
f80768a337076981ca7e7e817d19f69e
SHA1:
bb78530e73df8ce6e106100ce3521be92448486c
Base64:
57Ks