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