C:
char c = '\u5C08';
printf("%c\n", c); // Output: 專
JavaScript:
const char = '\u5C08';
console.log(char); // Output: 專
Java:
char c = '\u5C08';
System.out.println(c); // Output: 專
JSON:
{"text": "\u5C08"} // Value: 專
Python:
char = '\u5C08'
print(char) # Output: 專
Perl:
my $char = "\x{5C08}";
print $char; # Output: 專
PHP:
$char = "\x{5C08}";
echo $char; // Output: 專
Ruby:
char = "\u{5C08}"
puts char # Output: 專
Rust:
let c = '\u{5C08}';
println!("{}", c); // Output: 專
Go:
char := '\u5C08'
fmt.Printf("%c\n", char) // Output: 專
CSS:
/* CSS content property */
.element::before {
content: "\005C08"; /* 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%B0%88
MD5:
1b40f5542ec110ff66403b598ddb78e7
SHA1:
b98a81588d85d04f20813d23c65193d8ebdce75d
Base64:
5bCI