Unicode Finder

"岦" U+5CA6(CJK UNIFIED IDEOGRAPH-5CA6)

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

Programming

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

Web

CSS
\005CA6
HtmlDecimal
岦
HtmlHexadecimal
岦
Url
%E5%B2%A6

Code

MD5
39bd965864e22eca3b253d413dc9e058
Sha1
f74e922b931d2c68c4917f3a0d84fec84a6e9561
Base64
5bKm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CA6';
console.log(char);  // Output: 岦

Java:

char c = '\u5CA6';
System.out.println(c);  // Output: 岦

JSON:

{"text": "\u5CA6"}  // Value: 岦

Python:

char = '\u5CA6'
print(char)  # Output: 岦

Perl:

my $char = "\x{5CA6}";
print $char;  # Output: 岦

PHP:

$char = "\x{5CA6}";
echo $char;  // Output: 岦

Ruby:

char = "\u{5CA6}"
puts char  # Output: 岦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23718;</p>  <!-- Display: 岦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CA6;</p>  <!-- Display: 岦 -->

URL Encoding:

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

Encodings

MD5:

39bd965864e22eca3b253d413dc9e058

SHA1:

f74e922b931d2c68c4917f3a0d84fec84a6e9561

Base64:

5bKm