Unicode Finder

"杬" U+676C(CJK UNIFIED IDEOGRAPH-676C)

U+676C
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-676C

Programming

C
\u676C
JavaScript
\u676C
Java
\u676C
Json
\u676C
Python
\u676C
Perl
\x{676C}
PHP
\x{676C}
Ruby
\u{676C}
Rust
\u{676C}
Go
\u676C

Web

CSS
\00676C
HtmlDecimal
杬
HtmlHexadecimal
杬
Url
%E6%9D%AC

Code

MD5
9f3272054fc58cd8815077593d6290b3
Sha1
7eef648a9f4cb2fe04432da51219eb25fb41f8d7
Base64
5p2s

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u676C';
console.log(char);  // Output: 杬

Java:

char c = '\u676C';
System.out.println(c);  // Output: 杬

JSON:

{"text": "\u676C"}  // Value: 杬

Python:

char = '\u676C'
print(char)  # Output: 杬

Perl:

my $char = "\x{676C}";
print $char;  # Output: 杬

PHP:

$char = "\x{676C}";
echo $char;  // Output: 杬

Ruby:

char = "\u{676C}"
puts char  # Output: 杬

Rust:

let c = '\u{676C}';
println!("{}", c);  // Output: 杬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00676C";  /* Display: 杬 */
}

HTML Decimal:

<p>HTML decimal: &#26476;</p>  <!-- Display: 杬 -->

HTML Hexadecimal:

<p>HTML hex: &#x676C;</p>  <!-- Display: 杬 -->

URL Encoding:

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

Encodings

MD5:

9f3272054fc58cd8815077593d6290b3

SHA1:

7eef648a9f4cb2fe04432da51219eb25fb41f8d7

Base64:

5p2s