C:
char c = '\u7ACF';
printf("%c\n", c); // Output: 竏
JavaScript:
const char = '\u7ACF';
console.log(char); // Output: 竏
Java:
char c = '\u7ACF';
System.out.println(c); // Output: 竏
JSON:
{"text": "\u7ACF"} // Value: 竏
Python:
char = '\u7ACF'
print(char) # Output: 竏
Perl:
my $char = "\x{7ACF}";
print $char; # Output: 竏
PHP:
$char = "\x{7ACF}";
echo $char; // Output: 竏
Ruby:
char = "\u{7ACF}"
puts char # Output: 竏
Rust:
let c = '\u{7ACF}';
println!("{}", c); // Output: 竏
Go:
char := '\u7ACF'
fmt.Printf("%c\n", char) // Output: 竏
CSS:
/* CSS content property */
.element::before {
content: "\007ACF"; /* 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%AB%8F
MD5:
4e88abc025dd641d58b92c662d8da44a
SHA1:
7a4467aafb970de139a75bde0edec73eb58266e1
Base64:
56uP