C:
char c = '\u7F24';
printf("%c\n", c); // Output: 缤
JavaScript:
const char = '\u7F24';
console.log(char); // Output: 缤
Java:
char c = '\u7F24';
System.out.println(c); // Output: 缤
JSON:
{"text": "\u7F24"} // Value: 缤
Python:
char = '\u7F24'
print(char) # Output: 缤
Perl:
my $char = "\x{7F24}";
print $char; # Output: 缤
PHP:
$char = "\x{7F24}";
echo $char; // Output: 缤
Ruby:
char = "\u{7F24}"
puts char # Output: 缤
Rust:
let c = '\u{7F24}';
println!("{}", c); // Output: 缤
Go:
char := '\u7F24'
fmt.Printf("%c\n", char) // Output: 缤
CSS:
/* CSS content property */
.element::before {
content: "\007F24"; /* 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%BC%A4
MD5:
567ab06e5016c7b4d8ad4e170830a065
SHA1:
0e7b2f749ed6745d65f71e33ba90868a8d303dc7
Base64:
57yk