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