C:
char c = '\u6743';
printf("%c\n", c); // Output: 权
JavaScript:
const char = '\u6743';
console.log(char); // Output: 权
Java:
char c = '\u6743';
System.out.println(c); // Output: 权
JSON:
{"text": "\u6743"} // Value: 权
Python:
char = '\u6743'
print(char) # Output: 权
Perl:
my $char = "\x{6743}";
print $char; # Output: 权
PHP:
$char = "\x{6743}";
echo $char; // Output: 权
Ruby:
char = "\u{6743}"
puts char # Output: 权
Rust:
let c = '\u{6743}';
println!("{}", c); // Output: 权
Go:
char := '\u6743'
fmt.Printf("%c\n", char) // Output: 权
CSS:
/* CSS content property */
.element::before {
content: "\006743"; /* 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%9D%83
MD5:
d8d298940b2015a611582f7334aa30f8
SHA1:
b472af4de0169eb655f75333b66fac26110803a4
Base64:
5p2D