Unicode Finder

"岟" U+5C9F(CJK UNIFIED IDEOGRAPH-5C9F)

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

Programming

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

Web

CSS
\005C9F
HtmlDecimal
岟
HtmlHexadecimal
岟
Url
%E5%B2%9F

Code

MD5
fff4a6f8b0f10349ddf9d05026a1b77e
Sha1
73f1ad2203eaf89089bc79e627ee67214a355821
Base64
5bKf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C9F';
console.log(char);  // Output: 岟

Java:

char c = '\u5C9F';
System.out.println(c);  // Output: 岟

JSON:

{"text": "\u5C9F"}  // Value: 岟

Python:

char = '\u5C9F'
print(char)  # Output: 岟

Perl:

my $char = "\x{5C9F}";
print $char;  # Output: 岟

PHP:

$char = "\x{5C9F}";
echo $char;  // Output: 岟

Ruby:

char = "\u{5C9F}"
puts char  # Output: 岟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23711;</p>  <!-- Display: 岟 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C9F;</p>  <!-- Display: 岟 -->

URL Encoding:

// 岟 URL encoding
https://unicodefinder.com/search.php?query=%E5%B2%9F

Encodings

MD5:

fff4a6f8b0f10349ddf9d05026a1b77e

SHA1:

73f1ad2203eaf89089bc79e627ee67214a355821

Base64:

5bKf