C:
char c = '\u58C7';
printf("%c\n", c); // Output: 壇
JavaScript:
const char = '\u58C7';
console.log(char); // Output: 壇
Java:
char c = '\u58C7';
System.out.println(c); // Output: 壇
JSON:
{"text": "\u58C7"} // Value: 壇
Python:
char = '\u58C7'
print(char) # Output: 壇
Perl:
my $char = "\x{58C7}";
print $char; # Output: 壇
PHP:
$char = "\x{58C7}";
echo $char; // Output: 壇
Ruby:
char = "\u{58C7}"
puts char # Output: 壇
Rust:
let c = '\u{58C7}';
println!("{}", c); // Output: 壇
Go:
char := '\u58C7'
fmt.Printf("%c\n", char) // Output: 壇
CSS:
/* CSS content property */
.element::before {
content: "\0058C7"; /* 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%A3%87
MD5:
09e8b1890311c298877b1387c7a4144d
SHA1:
1704bac53489bfbec60f912165483b5e28968174
Base64:
5aOH