C:
char c = '\u6283';
printf("%c\n", c); // Output: 抃
JavaScript:
const char = '\u6283';
console.log(char); // Output: 抃
Java:
char c = '\u6283';
System.out.println(c); // Output: 抃
JSON:
{"text": "\u6283"} // Value: 抃
Python:
char = '\u6283'
print(char) # Output: 抃
Perl:
my $char = "\x{6283}";
print $char; # Output: 抃
PHP:
$char = "\x{6283}";
echo $char; // Output: 抃
Ruby:
char = "\u{6283}"
puts char # Output: 抃
Rust:
let c = '\u{6283}';
println!("{}", c); // Output: 抃
Go:
char := '\u6283'
fmt.Printf("%c\n", char) // Output: 抃
CSS:
/* CSS content property */
.element::before {
content: "\006283"; /* 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=%E6%8A%83
MD5:
243664f1546cb9d6762ca274effb9ed8
SHA1:
94319b417c53261bcca2aac7102ce5f93ce9949d
Base64:
5oqD