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