C:
char c = '\u6821';
printf("%c\n", c); // Output: 校
JavaScript:
const char = '\u6821';
console.log(char); // Output: 校
Java:
char c = '\u6821';
System.out.println(c); // Output: 校
JSON:
{"text": "\u6821"} // Value: 校
Python:
char = '\u6821'
print(char) # Output: 校
Perl:
my $char = "\x{6821}";
print $char; # Output: 校
PHP:
$char = "\x{6821}";
echo $char; // Output: 校
Ruby:
char = "\u{6821}"
puts char # Output: 校
Rust:
let c = '\u{6821}';
println!("{}", c); // Output: 校
Go:
char := '\u6821'
fmt.Printf("%c\n", char) // Output: 校
CSS:
/* CSS content property */
.element::before {
content: "\006821"; /* 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%A0%A1
MD5:
750800b75db77f8f178b85d8bf8d2a2f
SHA1:
5118ad88e3dbb527cf8fb0b2dc3919aa62637160
Base64:
5qCh