Unicode Finder

"峧" U+5CE7(CJK UNIFIED IDEOGRAPH-5CE7)

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

Programming

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

Web

CSS
\005CE7
HtmlDecimal
峧
HtmlHexadecimal
峧
Url
%E5%B3%A7

Code

MD5
a71b3e06c06401a81bb0fa01490acd87
Sha1
e1dee6e9c0f15f80cae635303227e904d67c2b34
Base64
5bOn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5CE7';
console.log(char);  // Output: 峧

Java:

char c = '\u5CE7';
System.out.println(c);  // Output: 峧

JSON:

{"text": "\u5CE7"}  // Value: 峧

Python:

char = '\u5CE7'
print(char)  # Output: 峧

Perl:

my $char = "\x{5CE7}";
print $char;  # Output: 峧

PHP:

$char = "\x{5CE7}";
echo $char;  // Output: 峧

Ruby:

char = "\u{5CE7}"
puts char  # Output: 峧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23783;</p>  <!-- Display: 峧 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CE7;</p>  <!-- Display: 峧 -->

URL Encoding:

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

Encodings

MD5:

a71b3e06c06401a81bb0fa01490acd87

SHA1:

e1dee6e9c0f15f80cae635303227e904d67c2b34

Base64:

5bOn