C:
char c = '\u6B0A';
printf("%c\n", c); // Output: 權
JavaScript:
const char = '\u6B0A';
console.log(char); // Output: 權
Java:
char c = '\u6B0A';
System.out.println(c); // Output: 權
JSON:
{"text": "\u6B0A"} // Value: 權
Python:
char = '\u6B0A'
print(char) # Output: 權
Perl:
my $char = "\x{6B0A}";
print $char; # Output: 權
PHP:
$char = "\x{6B0A}";
echo $char; // Output: 權
Ruby:
char = "\u{6B0A}"
puts char # Output: 權
Rust:
let c = '\u{6B0A}';
println!("{}", c); // Output: 權
Go:
char := '\u6B0A'
fmt.Printf("%c\n", char) // Output: 權
CSS:
/* CSS content property */
.element::before {
content: "\006B0A"; /* 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%8A
MD5:
1b1d298bebe8b220340e4638bc12e87b
SHA1:
10fe72877234e475335c926bcd2148cb3fce2dd5
Base64:
5qyK