Unicode Finder

"松" U+677E(CJK UNIFIED IDEOGRAPH-677E)

U+677E
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-677E

Programming

C
\u677E
JavaScript
\u677E
Java
\u677E
Json
\u677E
Python
\u677E
Perl
\x{677E}
PHP
\x{677E}
Ruby
\u{677E}
Rust
\u{677E}
Go
\u677E

Web

CSS
\00677E
HtmlDecimal
松
HtmlHexadecimal
松
Url
%E6%9D%BE

Code

MD5
161e45f0ce67b1aded831a3b00c878eb
Sha1
a8c9c860fbc3272a6daee9f4a3d62d148871408f
Base64
5p2+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u677E';
console.log(char);  // Output: 松

Java:

char c = '\u677E';
System.out.println(c);  // Output: 松

JSON:

{"text": "\u677E"}  // Value: 松

Python:

char = '\u677E'
print(char)  # Output: 松

Perl:

my $char = "\x{677E}";
print $char;  # Output: 松

PHP:

$char = "\x{677E}";
echo $char;  // Output: 松

Ruby:

char = "\u{677E}"
puts char  # Output: 松

Rust:

let c = '\u{677E}';
println!("{}", c);  // Output: 松

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00677E";  /* Display: 松 */
}

HTML Decimal:

<p>HTML decimal: &#26494;</p>  <!-- Display: 松 -->

HTML Hexadecimal:

<p>HTML hex: &#x677E;</p>  <!-- Display: 松 -->

URL Encoding:

// 松 URL encoding
https://unicodefinder.com/search.php?query=%E6%9D%BE

Encodings

MD5:

161e45f0ce67b1aded831a3b00c878eb

SHA1:

a8c9c860fbc3272a6daee9f4a3d62d148871408f

Base64:

5p2+