Unicode Finder

"峬" U+5CEC(CJK UNIFIED IDEOGRAPH-5CEC)

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

Programming

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

Web

CSS
\005CEC
HtmlDecimal
峬
HtmlHexadecimal
峬
Url
%E5%B3%AC

Code

MD5
b883789d9bd478eaabb6bac84309e6ea
Sha1
07e66fcf988cd69323a80b46473a7ccde2979b09
Base64
5bOs

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5CEC';
console.log(char);  // Output: 峬

Java:

char c = '\u5CEC';
System.out.println(c);  // Output: 峬

JSON:

{"text": "\u5CEC"}  // Value: 峬

Python:

char = '\u5CEC'
print(char)  # Output: 峬

Perl:

my $char = "\x{5CEC}";
print $char;  # Output: 峬

PHP:

$char = "\x{5CEC}";
echo $char;  // Output: 峬

Ruby:

char = "\u{5CEC}"
puts char  # Output: 峬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23788;</p>  <!-- Display: 峬 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CEC;</p>  <!-- Display: 峬 -->

URL Encoding:

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

Encodings

MD5:

b883789d9bd478eaabb6bac84309e6ea

SHA1:

07e66fcf988cd69323a80b46473a7ccde2979b09

Base64:

5bOs