Unicode Finder

"峿" U+5CFF(CJK UNIFIED IDEOGRAPH-5CFF)

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

Programming

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

Web

CSS
\005CFF
HtmlDecimal
峿
HtmlHexadecimal
峿
Url
%E5%B3%BF

Code

MD5
ed8d785c2176b5410dce1a1118580497
Sha1
f2891f5e25575138b466f45cdace14fe80019a06
Base64
5bO/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5CFF';
console.log(char);  // Output: 峿

Java:

char c = '\u5CFF';
System.out.println(c);  // Output: 峿

JSON:

{"text": "\u5CFF"}  // Value: 峿

Python:

char = '\u5CFF'
print(char)  # Output: 峿

Perl:

my $char = "\x{5CFF}";
print $char;  # Output: 峿

PHP:

$char = "\x{5CFF}";
echo $char;  // Output: 峿

Ruby:

char = "\u{5CFF}"
puts char  # Output: 峿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23807;</p>  <!-- Display: 峿 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CFF;</p>  <!-- Display: 峿 -->

URL Encoding:

// 峿 URL encoding
https://unicodefinder.com/search.php?query=%E5%B3%BF

Encodings

MD5:

ed8d785c2176b5410dce1a1118580497

SHA1:

f2891f5e25575138b466f45cdace14fe80019a06

Base64:

5bO/