Unicode Finder

"峲" U+5CF2(CJK UNIFIED IDEOGRAPH-5CF2)

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

Programming

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

Web

CSS
\005CF2
HtmlDecimal
峲
HtmlHexadecimal
峲
Url
%E5%B3%B2

Code

MD5
a3084b5c2b0df45a1a06fce257281a1e
Sha1
037806e1390d21a205618d76454258f58a600a5c
Base64
5bOy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5CF2';
console.log(char);  // Output: 峲

Java:

char c = '\u5CF2';
System.out.println(c);  // Output: 峲

JSON:

{"text": "\u5CF2"}  // Value: 峲

Python:

char = '\u5CF2'
print(char)  # Output: 峲

Perl:

my $char = "\x{5CF2}";
print $char;  # Output: 峲

PHP:

$char = "\x{5CF2}";
echo $char;  // Output: 峲

Ruby:

char = "\u{5CF2}"
puts char  # Output: 峲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23794;</p>  <!-- Display: 峲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CF2;</p>  <!-- Display: 峲 -->

URL Encoding:

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

Encodings

MD5:

a3084b5c2b0df45a1a06fce257281a1e

SHA1:

037806e1390d21a205618d76454258f58a600a5c

Base64:

5bOy