C:
char c = '\u5F93';
printf("%c\n", c); // Output: 従
JavaScript:
const char = '\u5F93';
console.log(char); // Output: 従
Java:
char c = '\u5F93';
System.out.println(c); // Output: 従
JSON:
{"text": "\u5F93"} // Value: 従
Python:
char = '\u5F93'
print(char) # Output: 従
Perl:
my $char = "\x{5F93}";
print $char; # Output: 従
PHP:
$char = "\x{5F93}";
echo $char; // Output: 従
Ruby:
char = "\u{5F93}"
puts char # Output: 従
Rust:
let c = '\u{5F93}';
println!("{}", c); // Output: 従
Go:
char := '\u5F93'
fmt.Printf("%c\n", char) // Output: 従
CSS:
/* CSS content property */
.element::before {
content: "\005F93"; /* 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=%E5%BE%93
MD5:
f9e00aa3a1ccd00c725214718a2aed5b
SHA1:
76bcc0a61948992d1f2cab34d658feddadcbabc6
Base64:
5b6T