Unicode Finder

"峰" U+5CF0(CJK UNIFIED IDEOGRAPH-5CF0)

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

Programming

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

Web

CSS
\005CF0
HtmlDecimal
峰
HtmlHexadecimal
峰
Url
%E5%B3%B0

Code

MD5
7aed0340a5dfc2494cd00802721f2e75
Sha1
9a4761d8cfaa606a1871679950d89a8b95bc8987
Base64
5bOw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5CF0';
console.log(char);  // Output: 峰

Java:

char c = '\u5CF0';
System.out.println(c);  // Output: 峰

JSON:

{"text": "\u5CF0"}  // Value: 峰

Python:

char = '\u5CF0'
print(char)  # Output: 峰

Perl:

my $char = "\x{5CF0}";
print $char;  # Output: 峰

PHP:

$char = "\x{5CF0}";
echo $char;  // Output: 峰

Ruby:

char = "\u{5CF0}"
puts char  # Output: 峰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23792;</p>  <!-- Display: 峰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CF0;</p>  <!-- Display: 峰 -->

URL Encoding:

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

Encodings

MD5:

7aed0340a5dfc2494cd00802721f2e75

SHA1:

9a4761d8cfaa606a1871679950d89a8b95bc8987

Base64:

5bOw