Unicode Finder

"岫" U+5CAB(CJK UNIFIED IDEOGRAPH-5CAB)

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

Programming

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

Web

CSS
\005CAB
HtmlDecimal
岫
HtmlHexadecimal
岫
Url
%E5%B2%AB

Code

MD5
87594264a595659737cfd296b17122a7
Sha1
da3fda081a2f6fdb6ffa1c87e9fc5ae572d8f4eb
Base64
5bKr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CAB';
console.log(char);  // Output: 岫

Java:

char c = '\u5CAB';
System.out.println(c);  // Output: 岫

JSON:

{"text": "\u5CAB"}  // Value: 岫

Python:

char = '\u5CAB'
print(char)  # Output: 岫

Perl:

my $char = "\x{5CAB}";
print $char;  # Output: 岫

PHP:

$char = "\x{5CAB}";
echo $char;  // Output: 岫

Ruby:

char = "\u{5CAB}"
puts char  # Output: 岫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23723;</p>  <!-- Display: 岫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CAB;</p>  <!-- Display: 岫 -->

URL Encoding:

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

Encodings

MD5:

87594264a595659737cfd296b17122a7

SHA1:

da3fda081a2f6fdb6ffa1c87e9fc5ae572d8f4eb

Base64:

5bKr