C:
char c = '\u65C2';
printf("%c\n", c); // Output: 旂
JavaScript:
const char = '\u65C2';
console.log(char); // Output: 旂
Java:
char c = '\u65C2';
System.out.println(c); // Output: 旂
JSON:
{"text": "\u65C2"} // Value: 旂
Python:
char = '\u65C2'
print(char) # Output: 旂
Perl:
my $char = "\x{65C2}";
print $char; # Output: 旂
PHP:
$char = "\x{65C2}";
echo $char; // Output: 旂
Ruby:
char = "\u{65C2}"
puts char # Output: 旂
Rust:
let c = '\u{65C2}';
println!("{}", c); // Output: 旂
Go:
char := '\u65C2'
fmt.Printf("%c\n", char) // Output: 旂
CSS:
/* CSS content property */
.element::before {
content: "\0065C2"; /* 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%97%82
MD5:
50d7fb38d62ac4dcd7d55ba76ab743f7
SHA1:
412fc037a811bbb1aeeab60a2519fc1f8649efc8
Base64:
5peC