C:
char c = '\u5727';
printf("%c\n", c); // Output: 圧
JavaScript:
const char = '\u5727';
console.log(char); // Output: 圧
Java:
char c = '\u5727';
System.out.println(c); // Output: 圧
JSON:
{"text": "\u5727"} // Value: 圧
Python:
char = '\u5727'
print(char) # Output: 圧
Perl:
my $char = "\x{5727}";
print $char; # Output: 圧
PHP:
$char = "\x{5727}";
echo $char; // Output: 圧
Ruby:
char = "\u{5727}"
puts char # Output: 圧
Rust:
let c = '\u{5727}';
println!("{}", c); // Output: 圧
Go:
char := '\u5727'
fmt.Printf("%c\n", char) // Output: 圧
CSS:
/* CSS content property */
.element::before {
content: "\005727"; /* 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=%E5%9C%A7
MD5:
9cf187c3fb401c95faadb2460adce4b3
SHA1:
fdaf3af475f1e7827171569d8e9904e531a42bce
Base64:
5Zyn