Unicode Finder

"柂" U+67C2(CJK UNIFIED IDEOGRAPH-67C2)

U+67C2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-67C2

Programming

C
\u67C2
JavaScript
\u67C2
Java
\u67C2
Json
\u67C2
Python
\u67C2
Perl
\x{67C2}
PHP
\x{67C2}
Ruby
\u{67C2}
Rust
\u{67C2}
Go
\u67C2

Web

CSS
\0067C2
HtmlDecimal
柂
HtmlHexadecimal
柂
Url
%E6%9F%82

Code

MD5
a7a20d5e485c5733deed329f2feb43d5
Sha1
b31615d10dd6eb4f07ca86a2eb264486fc93720a
Base64
5p+C

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67C2';
console.log(char);  // Output: 柂

Java:

char c = '\u67C2';
System.out.println(c);  // Output: 柂

JSON:

{"text": "\u67C2"}  // Value: 柂

Python:

char = '\u67C2'
print(char)  # Output: 柂

Perl:

my $char = "\x{67C2}";
print $char;  # Output: 柂

PHP:

$char = "\x{67C2}";
echo $char;  // Output: 柂

Ruby:

char = "\u{67C2}"
puts char  # Output: 柂

Rust:

let c = '\u{67C2}';
println!("{}", c);  // Output: 柂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0067C2";  /* Display: 柂 */
}

HTML Decimal:

<p>HTML decimal: &#26562;</p>  <!-- Display: 柂 -->

HTML Hexadecimal:

<p>HTML hex: &#x67C2;</p>  <!-- Display: 柂 -->

URL Encoding:

// 柂 URL encoding
https://unicodefinder.com/search.php?query=%E6%9F%82

Encodings

MD5:

a7a20d5e485c5733deed329f2feb43d5

SHA1:

b31615d10dd6eb4f07ca86a2eb264486fc93720a

Base64:

5p+C