Unicode Finder

"岱" U+5CB1(CJK UNIFIED IDEOGRAPH-5CB1)

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

Programming

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

Web

CSS
\005CB1
HtmlDecimal
岱
HtmlHexadecimal
岱
Url
%E5%B2%B1

Code

MD5
476c061c67c284b89e16b5871c7e4c6f
Sha1
fe59909fac081dee2d01eb31331200f5e200a895
Base64
5bKx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CB1';
console.log(char);  // Output: 岱

Java:

char c = '\u5CB1';
System.out.println(c);  // Output: 岱

JSON:

{"text": "\u5CB1"}  // Value: 岱

Python:

char = '\u5CB1'
print(char)  # Output: 岱

Perl:

my $char = "\x{5CB1}";
print $char;  # Output: 岱

PHP:

$char = "\x{5CB1}";
echo $char;  // Output: 岱

Ruby:

char = "\u{5CB1}"
puts char  # Output: 岱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23729;</p>  <!-- Display: 岱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CB1;</p>  <!-- Display: 岱 -->

URL Encoding:

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

Encodings

MD5:

476c061c67c284b89e16b5871c7e4c6f

SHA1:

fe59909fac081dee2d01eb31331200f5e200a895

Base64:

5bKx