Unicode Finder

"岗" U+5C97(CJK UNIFIED IDEOGRAPH-5C97)

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

Programming

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

Web

CSS
\005C97
HtmlDecimal
岗
HtmlHexadecimal
岗
Url
%E5%B2%97

Code

MD5
a759fceff118d7d6d7680cb0582dbd32
Sha1
2614904d247d50880c294167ef0867ac56d0e0cd
Base64
5bKX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C97';
console.log(char);  // Output: 岗

Java:

char c = '\u5C97';
System.out.println(c);  // Output: 岗

JSON:

{"text": "\u5C97"}  // Value: 岗

Python:

char = '\u5C97'
print(char)  # Output: 岗

Perl:

my $char = "\x{5C97}";
print $char;  # Output: 岗

PHP:

$char = "\x{5C97}";
echo $char;  // Output: 岗

Ruby:

char = "\u{5C97}"
puts char  # Output: 岗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23703;</p>  <!-- Display: 岗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C97;</p>  <!-- Display: 岗 -->

URL Encoding:

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

Encodings

MD5:

a759fceff118d7d6d7680cb0582dbd32

SHA1:

2614904d247d50880c294167ef0867ac56d0e0cd

Base64:

5bKX