C:
char c = '\u7AC1';
printf("%c\n", c); // Output: 竁
JavaScript:
const char = '\u7AC1';
console.log(char); // Output: 竁
Java:
char c = '\u7AC1';
System.out.println(c); // Output: 竁
JSON:
{"text": "\u7AC1"} // Value: 竁
Python:
char = '\u7AC1'
print(char) # Output: 竁
Perl:
my $char = "\x{7AC1}";
print $char; # Output: 竁
PHP:
$char = "\x{7AC1}";
echo $char; // Output: 竁
Ruby:
char = "\u{7AC1}"
puts char # Output: 竁
Rust:
let c = '\u{7AC1}';
println!("{}", c); // Output: 竁
Go:
char := '\u7AC1'
fmt.Printf("%c\n", char) // Output: 竁
CSS:
/* CSS content property */
.element::before {
content: "\007AC1"; /* 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%81
MD5:
84746d60b310a7bb146e9696cfa5c50a
SHA1:
18d350e73afec3b608a7187025a289262a365021
Base64:
56uB