C:
char c = '\u9806';
printf("%c\n", c); // Output: 順
JavaScript:
const char = '\u9806';
console.log(char); // Output: 順
Java:
char c = '\u9806';
System.out.println(c); // Output: 順
JSON:
{"text": "\u9806"} // Value: 順
Python:
char = '\u9806'
print(char) # Output: 順
Perl:
my $char = "\x{9806}";
print $char; # Output: 順
PHP:
$char = "\x{9806}";
echo $char; // Output: 順
Ruby:
char = "\u{9806}"
puts char # Output: 順
Rust:
let c = '\u{9806}';
println!("{}", c); // Output: 順
Go:
char := '\u9806'
fmt.Printf("%c\n", char) // Output: 順
CSS:
/* CSS content property */
.element::before {
content: "\009806"; /* 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=%E9%A0%86
MD5:
b5493c6d5e4d256dccbcc35d66f4f451
SHA1:
8659ede7ad48c8f78677924bb5daf7de921d7b32
Base64:
6aCG