C:
char c = '\u5172';
printf("%c\n", c); // Output: 兲
JavaScript:
const char = '\u5172';
console.log(char); // Output: 兲
Java:
char c = '\u5172';
System.out.println(c); // Output: 兲
JSON:
{"text": "\u5172"} // Value: 兲
Python:
char = '\u5172'
print(char) # Output: 兲
Perl:
my $char = "\x{5172}";
print $char; # Output: 兲
PHP:
$char = "\x{5172}";
echo $char; // Output: 兲
Ruby:
char = "\u{5172}"
puts char # Output: 兲
Rust:
let c = '\u{5172}';
println!("{}", c); // Output: 兲
Go:
char := '\u5172'
fmt.Printf("%c\n", char) // Output: 兲
CSS:
/* CSS content property */
.element::before {
content: "\005172"; /* 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%B2
MD5:
5fdcefffc5b66e0a5bf4022a05e20b65
SHA1:
6729d69b5662e66a826199d24ee9c92ee6c70561
Base64:
5YWy