C:
char c = '\u5101';
printf("%c\n", c); // Output: 儁
JavaScript:
const char = '\u5101';
console.log(char); // Output: 儁
Java:
char c = '\u5101';
System.out.println(c); // Output: 儁
JSON:
{"text": "\u5101"} // Value: 儁
Python:
char = '\u5101'
print(char) # Output: 儁
Perl:
my $char = "\x{5101}";
print $char; # Output: 儁
PHP:
$char = "\x{5101}";
echo $char; // Output: 儁
Ruby:
char = "\u{5101}"
puts char # Output: 儁
Rust:
let c = '\u{5101}';
println!("{}", c); // Output: 儁
Go:
char := '\u5101'
fmt.Printf("%c\n", char) // Output: 儁
CSS:
/* CSS content property */
.element::before {
content: "\005101"; /* 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%84%81
MD5:
e9a26125f66f9f4e0976cf5cd4d9191b
SHA1:
2a5303b37293f3d8797119c2e68dad3c83823303
Base64:
5YSB