C:
char c = '\u5F81';
printf("%c\n", c); // Output: 征
JavaScript:
const char = '\u5F81';
console.log(char); // Output: 征
Java:
char c = '\u5F81';
System.out.println(c); // Output: 征
JSON:
{"text": "\u5F81"} // Value: 征
Python:
char = '\u5F81'
print(char) # Output: 征
Perl:
my $char = "\x{5F81}";
print $char; # Output: 征
PHP:
$char = "\x{5F81}";
echo $char; // Output: 征
Ruby:
char = "\u{5F81}"
puts char # Output: 征
Rust:
let c = '\u{5F81}';
println!("{}", c); // Output: 征
Go:
char := '\u5F81'
fmt.Printf("%c\n", char) // Output: 征
CSS:
/* CSS content property */
.element::before {
content: "\005F81"; /* 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%81
MD5:
6feddf8b3b349852f640bbe001f30c5d
SHA1:
0925591f80d8358f7e821c52adb663612c184684
Base64:
5b6B