C:
char c = '\u6280';
printf("%c\n", c); // Output: 技
JavaScript:
const char = '\u6280';
console.log(char); // Output: 技
Java:
char c = '\u6280';
System.out.println(c); // Output: 技
JSON:
{"text": "\u6280"} // Value: 技
Python:
char = '\u6280'
print(char) # Output: 技
Perl:
my $char = "\x{6280}";
print $char; # Output: 技
PHP:
$char = "\x{6280}";
echo $char; // Output: 技
Ruby:
char = "\u{6280}"
puts char # Output: 技
Rust:
let c = '\u{6280}';
println!("{}", c); // Output: 技
Go:
char := '\u6280'
fmt.Printf("%c\n", char) // Output: 技
CSS:
/* CSS content property */
.element::before {
content: "\006280"; /* 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%8A%80
MD5:
300ff5e3156e527babde342ad480bb0e
SHA1:
9713721612b2a1972394de1e8094466451daf477
Base64:
5oqA