Unicode Finder

"岯" U+5CAF(CJK UNIFIED IDEOGRAPH-5CAF)

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

Programming

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

Web

CSS
\005CAF
HtmlDecimal
岯
HtmlHexadecimal
岯
Url
%E5%B2%AF

Code

MD5
287eef6fe005d87367d46406a2434a7a
Sha1
1a96f70145084285217d4a9b1bedf0bbba0b9f73
Base64
5bKv

使用示例

Programming Languages

C:

char c = '\u5CAF';
printf("%c\n", c);  // Output: 岯

JavaScript:

const char = '\u5CAF';
console.log(char);  // Output: 岯

Java:

char c = '\u5CAF';
System.out.println(c);  // Output: 岯

JSON:

{"text": "\u5CAF"}  // Value: 岯

Python:

char = '\u5CAF'
print(char)  # Output: 岯

Perl:

my $char = "\x{5CAF}";
print $char;  # Output: 岯

PHP:

$char = "\x{5CAF}";
echo $char;  // Output: 岯

Ruby:

char = "\u{5CAF}"
puts char  # Output: 岯

Rust:

let c = '\u{5CAF}';
println!("{}", c);  // Output: 岯

Go:

char := '\u5CAF'
fmt.Printf("%c\n", char)  // Output: 岯

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23727;</p>  <!-- Display: 岯 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CAF;</p>  <!-- Display: 岯 -->

URL Encoding:

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

Encodings

MD5:

287eef6fe005d87367d46406a2434a7a

SHA1:

1a96f70145084285217d4a9b1bedf0bbba0b9f73

Base64:

5bKv