Unicode Finder

"岰" U+5CB0(CJK UNIFIED IDEOGRAPH-5CB0)

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

Programming

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

Web

CSS
\005CB0
HtmlDecimal
岰
HtmlHexadecimal
岰
Url
%E5%B2%B0

Code

MD5
44fc09c36ed43e0c58796bf9e87457e0
Sha1
1b91ee7b20f1b236da150dafe463936e4f922154
Base64
5bKw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CB0';
console.log(char);  // Output: 岰

Java:

char c = '\u5CB0';
System.out.println(c);  // Output: 岰

JSON:

{"text": "\u5CB0"}  // Value: 岰

Python:

char = '\u5CB0'
print(char)  # Output: 岰

Perl:

my $char = "\x{5CB0}";
print $char;  # Output: 岰

PHP:

$char = "\x{5CB0}";
echo $char;  // Output: 岰

Ruby:

char = "\u{5CB0}"
puts char  # Output: 岰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23728;</p>  <!-- Display: 岰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CB0;</p>  <!-- Display: 岰 -->

URL Encoding:

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

Encodings

MD5:

44fc09c36ed43e0c58796bf9e87457e0

SHA1:

1b91ee7b20f1b236da150dafe463936e4f922154

Base64:

5bKw