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