C:
char c = '\u5715';
printf("%c\n", c); // Output: 圕
JavaScript:
const char = '\u5715';
console.log(char); // Output: 圕
Java:
char c = '\u5715';
System.out.println(c); // Output: 圕
JSON:
{"text": "\u5715"} // Value: 圕
Python:
char = '\u5715'
print(char) # Output: 圕
Perl:
my $char = "\x{5715}";
print $char; # Output: 圕
PHP:
$char = "\x{5715}";
echo $char; // Output: 圕
Ruby:
char = "\u{5715}"
puts char # Output: 圕
Rust:
let c = '\u{5715}';
println!("{}", c); // Output: 圕
Go:
char := '\u5715'
fmt.Printf("%c\n", char) // Output: 圕
CSS:
/* CSS content property */
.element::before {
content: "\005715"; /* 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%95
MD5:
ea51f0bcf4e45cd3eac26cf1e7c109ba
SHA1:
856360d01fca53f26aa9c52f6ca0d0bc14cda92d
Base64:
5ZyV