C:
char c = '\u5283';
printf("%c\n", c); // Output: 劃
JavaScript:
const char = '\u5283';
console.log(char); // Output: 劃
Java:
char c = '\u5283';
System.out.println(c); // Output: 劃
JSON:
{"text": "\u5283"} // Value: 劃
Python:
char = '\u5283'
print(char) # Output: 劃
Perl:
my $char = "\x{5283}";
print $char; # Output: 劃
PHP:
$char = "\x{5283}";
echo $char; // Output: 劃
Ruby:
char = "\u{5283}"
puts char # Output: 劃
Rust:
let c = '\u{5283}';
println!("{}", c); // Output: 劃
Go:
char := '\u5283'
fmt.Printf("%c\n", char) // Output: 劃
CSS:
/* CSS content property */
.element::before {
content: "\005283"; /* 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%83
MD5:
4a3f497eea9174228ad0bb6a12e656a3
SHA1:
bbccf35d430f6cb17356d6bef7c89b89d2f05121
Base64:
5YqD