C:
char c = '\u6B21';
printf("%c\n", c); // Output: 次
JavaScript:
const char = '\u6B21';
console.log(char); // Output: 次
Java:
char c = '\u6B21';
System.out.println(c); // Output: 次
JSON:
{"text": "\u6B21"} // Value: 次
Python:
char = '\u6B21'
print(char) # Output: 次
Perl:
my $char = "\x{6B21}";
print $char; # Output: 次
PHP:
$char = "\x{6B21}";
echo $char; // Output: 次
Ruby:
char = "\u{6B21}"
puts char # Output: 次
Rust:
let c = '\u{6B21}';
println!("{}", c); // Output: 次
Go:
char := '\u6B21'
fmt.Printf("%c\n", char) // Output: 次
CSS:
/* CSS content property */
.element::before {
content: "\006B21"; /* 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%AC%A1
MD5:
7229ecc63125adf7fcf2867d792a77be
SHA1:
5e5b8169eee6523a5db7f0c46b3f50c3096c365c
Base64:
5qyh