Unicode Finder

"杲" U+6772(CJK UNIFIED IDEOGRAPH-6772)

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

Programming

C
\u6772
JavaScript
\u6772
Java
\u6772
Json
\u6772
Python
\u6772
Perl
\x{6772}
PHP
\x{6772}
Ruby
\u{6772}
Rust
\u{6772}
Go
\u6772

Web

CSS
\006772
HtmlDecimal
杲
HtmlHexadecimal
杲
Url
%E6%9D%B2

Code

MD5
0ea392163877a10b95a5e410b37aa4c8
Sha1
2a498a20e5c1ae3cc8a75e179510fc32933eccac
Base64
5p2y

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6772';
console.log(char);  // Output: 杲

Java:

char c = '\u6772';
System.out.println(c);  // Output: 杲

JSON:

{"text": "\u6772"}  // Value: 杲

Python:

char = '\u6772'
print(char)  # Output: 杲

Perl:

my $char = "\x{6772}";
print $char;  # Output: 杲

PHP:

$char = "\x{6772}";
echo $char;  // Output: 杲

Ruby:

char = "\u{6772}"
puts char  # Output: 杲

Rust:

let c = '\u{6772}';
println!("{}", c);  // Output: 杲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006772";  /* Display: 杲 */
}

HTML Decimal:

<p>HTML decimal: &#26482;</p>  <!-- Display: 杲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6772;</p>  <!-- Display: 杲 -->

URL Encoding:

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

Encodings

MD5:

0ea392163877a10b95a5e410b37aa4c8

SHA1:

2a498a20e5c1ae3cc8a75e179510fc32933eccac

Base64:

5p2y