Unicode Finder

"公" U+516C(CJK UNIFIED IDEOGRAPH-516C)

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

Programming

C
\u516C
JavaScript
\u516C
Java
\u516C
Json
\u516C
Python
\u516C
Perl
\x{516C}
PHP
\x{516C}
Ruby
\u{516C}
Rust
\u{516C}
Go
\u516C

Web

CSS
\00516C
HtmlDecimal
公
HtmlHexadecimal
公
Url
%E5%85%AC

Code

MD5
7d6c6b0efe2e06b044b1b89369f0543b
Sha1
2eb8ebf6c33c31c6079eb6074178016e6aba1c38
Base64
5YWs

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u516C';
console.log(char);  // Output: 公

Java:

char c = '\u516C';
System.out.println(c);  // Output: 公

JSON:

{"text": "\u516C"}  // Value: 公

Python:

char = '\u516C'
print(char)  # Output: 公

Perl:

my $char = "\x{516C}";
print $char;  # Output: 公

PHP:

$char = "\x{516C}";
echo $char;  // Output: 公

Ruby:

char = "\u{516C}"
puts char  # Output: 公

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20844;</p>  <!-- Display: 公 -->

HTML Hexadecimal:

<p>HTML hex: &#x516C;</p>  <!-- Display: 公 -->

URL Encoding:

// 公 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%AC

Encodings

MD5:

7d6c6b0efe2e06b044b1b89369f0543b

SHA1:

2eb8ebf6c33c31c6079eb6074178016e6aba1c38

Base64:

5YWs