Unicode Finder

"岬" U+5CAC(CJK UNIFIED IDEOGRAPH-5CAC)

U+5CAC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5CAC

Programming

C
\u5CAC
JavaScript
\u5CAC
Java
\u5CAC
Json
\u5CAC
Python
\u5CAC
Perl
\x{5CAC}
PHP
\x{5CAC}
Ruby
\u{5CAC}
Rust
\u{5CAC}
Go
\u5CAC

Web

CSS
\005CAC
HtmlDecimal
岬
HtmlHexadecimal
岬
Url
%E5%B2%AC

Code

MD5
4997d3a41ed6dff44a466351d85cd71f
Sha1
bea27178d94a788862d766dbd8f93fac96295d4b
Base64
5bKs

使用示例

Programming Languages

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: 岬

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005CAC";  /* Display: 岬 */
}

HTML Decimal:

<p>HTML decimal: &#23724;</p>  <!-- Display: 岬 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CAC;</p>  <!-- Display: 岬 -->

URL Encoding:

// 岬 URL encoding
https://unicodefinder.com/search.php?query=%E5%B2%AC

Encodings

MD5:

4997d3a41ed6dff44a466351d85cd71f

SHA1:

bea27178d94a788862d766dbd8f93fac96295d4b

Base64:

5bKs