C:
char c = '\u6CCA';
printf("%c\n", c); // Output: 泊
JavaScript:
const char = '\u6CCA';
console.log(char); // Output: 泊
Java:
char c = '\u6CCA';
System.out.println(c); // Output: 泊
JSON:
{"text": "\u6CCA"} // Value: 泊
Python:
char = '\u6CCA'
print(char) # Output: 泊
Perl:
my $char = "\x{6CCA}";
print $char; # Output: 泊
PHP:
$char = "\x{6CCA}";
echo $char; // Output: 泊
Ruby:
char = "\u{6CCA}"
puts char # Output: 泊
Rust:
let c = '\u{6CCA}';
println!("{}", c); // Output: 泊
Go:
char := '\u6CCA'
fmt.Printf("%c\n", char) // Output: 泊
CSS:
/* CSS content property */
.element::before {
content: "\006CCA"; /* 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%B3%8A
MD5:
72e423512644d9cc322823a900e617e3
SHA1:
ec5f480140aea3f96506b8fddc7fdc3dd55e7c89
Base64:
5rOK