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