C:
char c = '\u6272';
printf("%c\n", c); // Output: 扲
JavaScript:
const char = '\u6272';
console.log(char); // Output: 扲
Java:
char c = '\u6272';
System.out.println(c); // Output: 扲
JSON:
{"text": "\u6272"} // Value: 扲
Python:
char = '\u6272'
print(char) # Output: 扲
Perl:
my $char = "\x{6272}";
print $char; # Output: 扲
PHP:
$char = "\x{6272}";
echo $char; // Output: 扲
Ruby:
char = "\u{6272}"
puts char # Output: 扲
Rust:
let c = '\u{6272}';
println!("{}", c); // Output: 扲
Go:
char := '\u6272'
fmt.Printf("%c\n", char) // Output: 扲
CSS:
/* CSS content property */
.element::before {
content: "\006272"; /* 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%B2
MD5:
2515dca868b8c827d3881eed00b91d2a
SHA1:
771e18611451016df0d4ea05f53d9f605001eba3
Base64:
5omy