C:
char c = '\u52C6';
printf("%c\n", c); // Output: 勆
JavaScript:
const char = '\u52C6';
console.log(char); // Output: 勆
Java:
char c = '\u52C6';
System.out.println(c); // Output: 勆
JSON:
{"text": "\u52C6"} // Value: 勆
Python:
char = '\u52C6'
print(char) # Output: 勆
Perl:
my $char = "\x{52C6}";
print $char; # Output: 勆
PHP:
$char = "\x{52C6}";
echo $char; // Output: 勆
Ruby:
char = "\u{52C6}"
puts char # Output: 勆
Rust:
let c = '\u{52C6}';
println!("{}", c); // Output: 勆
Go:
char := '\u52C6'
fmt.Printf("%c\n", char) // Output: 勆
CSS:
/* CSS content property */
.element::before {
content: "\0052C6"; /* 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%8B%86
MD5:
976caea02937759f205e96ddde788efd
SHA1:
8f979394a90cb5c9d8bd9ecb2d512592b30f3139
Base64:
5YuG