C:
char c = '\u6271';
printf("%c\n", c); // Output: 扱
JavaScript:
const char = '\u6271';
console.log(char); // Output: 扱
Java:
char c = '\u6271';
System.out.println(c); // Output: 扱
JSON:
{"text": "\u6271"} // Value: 扱
Python:
char = '\u6271'
print(char) # Output: 扱
Perl:
my $char = "\x{6271}";
print $char; # Output: 扱
PHP:
$char = "\x{6271}";
echo $char; // Output: 扱
Ruby:
char = "\u{6271}"
puts char # Output: 扱
Rust:
let c = '\u{6271}';
println!("{}", c); // Output: 扱
Go:
char := '\u6271'
fmt.Printf("%c\n", char) // Output: 扱
CSS:
/* CSS content property */
.element::before {
content: "\006271"; /* 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%B1
MD5:
1ddff04702bf1f8a09c51d72b9791622
SHA1:
18d049552b363ba99598e953648a3e8429834477
Base64:
5omx