C:
char c = '\u6514';
printf("%c\n", c); // Output: 攔
JavaScript:
const char = '\u6514';
console.log(char); // Output: 攔
Java:
char c = '\u6514';
System.out.println(c); // Output: 攔
JSON:
{"text": "\u6514"} // Value: 攔
Python:
char = '\u6514'
print(char) # Output: 攔
Perl:
my $char = "\x{6514}";
print $char; # Output: 攔
PHP:
$char = "\x{6514}";
echo $char; // Output: 攔
Ruby:
char = "\u{6514}"
puts char # Output: 攔
Rust:
let c = '\u{6514}';
println!("{}", c); // Output: 攔
Go:
char := '\u6514'
fmt.Printf("%c\n", char) // Output: 攔
CSS:
/* CSS content property */
.element::before {
content: "\006514"; /* 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=%E6%94%94
MD5:
52255d2d598b7f614806edb8eb8668a5
SHA1:
d4f0a973abe85da8a7857f14862ef27e0becd6e2
Base64:
5pSU