C:
char c = '\u6262';
printf("%c\n", c); // Output: 扢
JavaScript:
const char = '\u6262';
console.log(char); // Output: 扢
Java:
char c = '\u6262';
System.out.println(c); // Output: 扢
JSON:
{"text": "\u6262"} // Value: 扢
Python:
char = '\u6262'
print(char) # Output: 扢
Perl:
my $char = "\x{6262}";
print $char; # Output: 扢
PHP:
$char = "\x{6262}";
echo $char; // Output: 扢
Ruby:
char = "\u{6262}"
puts char # Output: 扢
Rust:
let c = '\u{6262}';
println!("{}", c); // Output: 扢
Go:
char := '\u6262'
fmt.Printf("%c\n", char) // Output: 扢
CSS:
/* CSS content property */
.element::before {
content: "\006262"; /* 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%A2
MD5:
45882b4437eb79ace54fd2abd1f369cb
SHA1:
220d173df66c08d1f6a99ae2bc9177c0aada240d
Base64:
5omi