C:
char c = '\u5297';
printf("%c\n", c); // Output: 劗
JavaScript:
const char = '\u5297';
console.log(char); // Output: 劗
Java:
char c = '\u5297';
System.out.println(c); // Output: 劗
JSON:
{"text": "\u5297"} // Value: 劗
Python:
char = '\u5297'
print(char) # Output: 劗
Perl:
my $char = "\x{5297}";
print $char; # Output: 劗
PHP:
$char = "\x{5297}";
echo $char; // Output: 劗
Ruby:
char = "\u{5297}"
puts char # Output: 劗
Rust:
let c = '\u{5297}';
println!("{}", c); // Output: 劗
Go:
char := '\u5297'
fmt.Printf("%c\n", char) // Output: 劗
CSS:
/* CSS content property */
.element::before {
content: "\005297"; /* 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%8A%97
MD5:
8b4b6460b416e90325a674618bf47e03
SHA1:
868e402eefbfcae87458b70397ad598187d5482e
Base64:
5YqX