Unicode Finder

"岭" U+5CAD(CJK UNIFIED IDEOGRAPH-5CAD)

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

Programming

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

Web

CSS
\005CAD
HtmlDecimal
岭
HtmlHexadecimal
岭
Url
%E5%B2%AD

Code

MD5
cef21d2dca0cb49734b2f7f2e19740b8
Sha1
2c73fbd91224408e6940028bf8b76ae581a8cb0b
Base64
5bKt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CAD';
console.log(char);  // Output: 岭

Java:

char c = '\u5CAD';
System.out.println(c);  // Output: 岭

JSON:

{"text": "\u5CAD"}  // Value: 岭

Python:

char = '\u5CAD'
print(char)  # Output: 岭

Perl:

my $char = "\x{5CAD}";
print $char;  # Output: 岭

PHP:

$char = "\x{5CAD}";
echo $char;  // Output: 岭

Ruby:

char = "\u{5CAD}"
puts char  # Output: 岭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23725;</p>  <!-- Display: 岭 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CAD;</p>  <!-- Display: 岭 -->

URL Encoding:

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

Encodings

MD5:

cef21d2dca0cb49734b2f7f2e19740b8

SHA1:

2c73fbd91224408e6940028bf8b76ae581a8cb0b

Base64:

5bKt