C:
char c = '\u66F1';
printf("%c\n", c); // Output: 曱
JavaScript:
const char = '\u66F1';
console.log(char); // Output: 曱
Java:
char c = '\u66F1';
System.out.println(c); // Output: 曱
JSON:
{"text": "\u66F1"} // Value: 曱
Python:
char = '\u66F1'
print(char) # Output: 曱
Perl:
my $char = "\x{66F1}";
print $char; # Output: 曱
PHP:
$char = "\x{66F1}";
echo $char; // Output: 曱
Ruby:
char = "\u{66F1}"
puts char # Output: 曱
Rust:
let c = '\u{66F1}';
println!("{}", c); // Output: 曱
Go:
char := '\u66F1'
fmt.Printf("%c\n", char) // Output: 曱
CSS:
/* CSS content property */
.element::before {
content: "\0066F1"; /* 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%9B%B1
MD5:
2ef956e33ea971345772f61e6433a900
SHA1:
56bef537c78179a2cc705175460f2a0531ef49ed
Base64:
5pux