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