Unicode Finder

"岑" U+5C91(CJK UNIFIED IDEOGRAPH-5C91)

U+5C91
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5C91

Programming

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

Web

CSS
\005C91
HtmlDecimal
岑
HtmlHexadecimal
岑
Url
%E5%B2%91

Code

MD5
fd36fce88c434088661abaf08f9f3c74
Sha1
3d5ef8e3cb17ced8b5c226dd83065298aff3509f
Base64
5bKR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C91';
console.log(char);  // Output: 岑

Java:

char c = '\u5C91';
System.out.println(c);  // Output: 岑

JSON:

{"text": "\u5C91"}  // Value: 岑

Python:

char = '\u5C91'
print(char)  # Output: 岑

Perl:

my $char = "\x{5C91}";
print $char;  # Output: 岑

PHP:

$char = "\x{5C91}";
echo $char;  // Output: 岑

Ruby:

char = "\u{5C91}"
puts char  # Output: 岑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23697;</p>  <!-- Display: 岑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C91;</p>  <!-- Display: 岑 -->

URL Encoding:

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

Encodings

MD5:

fd36fce88c434088661abaf08f9f3c74

SHA1:

3d5ef8e3cb17ced8b5c226dd83065298aff3509f

Base64:

5bKR