Unicode Finder

"板" U+677F(CJK UNIFIED IDEOGRAPH-677F)

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

Programming

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

Web

CSS
\00677F
HtmlDecimal
板
HtmlHexadecimal
板
Url
%E6%9D%BF

Code

MD5
19aefe96dd65a90040f690099225c099
Sha1
2793c14d0a42b2a7da9dbc173f8aa1e9c1f05505
Base64
5p2/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u677F';
console.log(char);  // Output: 板

Java:

char c = '\u677F';
System.out.println(c);  // Output: 板

JSON:

{"text": "\u677F"}  // Value: 板

Python:

char = '\u677F'
print(char)  # Output: 板

Perl:

my $char = "\x{677F}";
print $char;  # Output: 板

PHP:

$char = "\x{677F}";
echo $char;  // Output: 板

Ruby:

char = "\u{677F}"
puts char  # Output: 板

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26495;</p>  <!-- Display: 板 -->

HTML Hexadecimal:

<p>HTML hex: &#x677F;</p>  <!-- Display: 板 -->

URL Encoding:

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

Encodings

MD5:

19aefe96dd65a90040f690099225c099

SHA1:

2793c14d0a42b2a7da9dbc173f8aa1e9c1f05505

Base64:

5p2/