C:
char c = '\u6B17';
printf("%c\n", c); // Output: 欗
JavaScript:
const char = '\u6B17';
console.log(char); // Output: 欗
Java:
char c = '\u6B17';
System.out.println(c); // Output: 欗
JSON:
{"text": "\u6B17"} // Value: 欗
Python:
char = '\u6B17'
print(char) # Output: 欗
Perl:
my $char = "\x{6B17}";
print $char; # Output: 欗
PHP:
$char = "\x{6B17}";
echo $char; // Output: 欗
Ruby:
char = "\u{6B17}"
puts char # Output: 欗
Rust:
let c = '\u{6B17}';
println!("{}", c); // Output: 欗
Go:
char := '\u6B17'
fmt.Printf("%c\n", char) // Output: 欗
CSS:
/* CSS content property */
.element::before {
content: "\006B17"; /* 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%97
MD5:
4335dc5ac39ba65aa7d89d25094e2db5
SHA1:
80f22e6d6cd0e54025f72395e749cfb43d97e233
Base64:
5qyX