C:
char c = '\u5705';
printf("%c\n", c); // Output: 圅
JavaScript:
const char = '\u5705';
console.log(char); // Output: 圅
Java:
char c = '\u5705';
System.out.println(c); // Output: 圅
JSON:
{"text": "\u5705"} // Value: 圅
Python:
char = '\u5705'
print(char) # Output: 圅
Perl:
my $char = "\x{5705}";
print $char; # Output: 圅
PHP:
$char = "\x{5705}";
echo $char; // Output: 圅
Ruby:
char = "\u{5705}"
puts char # Output: 圅
Rust:
let c = '\u{5705}';
println!("{}", c); // Output: 圅
Go:
char := '\u5705'
fmt.Printf("%c\n", char) // Output: 圅
CSS:
/* CSS content property */
.element::before {
content: "\005705"; /* 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%9C%85
MD5:
45dfb44def4bce9d6ab02d2f4bb0b154
SHA1:
7c80bc70148670cd74ba13282c87beca845bf062
Base64:
5ZyF