C:
char c = '\u6250';
printf("%c\n", c); // Output: 扐
JavaScript:
const char = '\u6250';
console.log(char); // Output: 扐
Java:
char c = '\u6250';
System.out.println(c); // Output: 扐
JSON:
{"text": "\u6250"} // Value: 扐
Python:
char = '\u6250'
print(char) # Output: 扐
Perl:
my $char = "\x{6250}";
print $char; # Output: 扐
PHP:
$char = "\x{6250}";
echo $char; // Output: 扐
Ruby:
char = "\u{6250}"
puts char # Output: 扐
Rust:
let c = '\u{6250}';
println!("{}", c); // Output: 扐
Go:
char := '\u6250'
fmt.Printf("%c\n", char) // Output: 扐
CSS:
/* CSS content property */
.element::before {
content: "\006250"; /* 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%89%90
MD5:
42e8505c568680905960b7e8b986eb5b
SHA1:
595baae9a0e751226899e31d3691dbf0c2d64d8c
Base64:
5omQ