Unicode Finder

"柬" U+67EC(CJK UNIFIED IDEOGRAPH-67EC)

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

Programming

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

Web

CSS
\0067EC
HtmlDecimal
柬
HtmlHexadecimal
柬
Url
%E6%9F%AC

Code

MD5
71770d2dbf39cadc6abede4ac406175c
Sha1
16442ffc177935fdd3dfae1281e8f9d5f2212126
Base64
5p+s

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67EC';
console.log(char);  // Output: 柬

Java:

char c = '\u67EC';
System.out.println(c);  // Output: 柬

JSON:

{"text": "\u67EC"}  // Value: 柬

Python:

char = '\u67EC'
print(char)  # Output: 柬

Perl:

my $char = "\x{67EC}";
print $char;  # Output: 柬

PHP:

$char = "\x{67EC}";
echo $char;  // Output: 柬

Ruby:

char = "\u{67EC}"
puts char  # Output: 柬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26604;</p>  <!-- Display: 柬 -->

HTML Hexadecimal:

<p>HTML hex: &#x67EC;</p>  <!-- Display: 柬 -->

URL Encoding:

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

Encodings

MD5:

71770d2dbf39cadc6abede4ac406175c

SHA1:

16442ffc177935fdd3dfae1281e8f9d5f2212126

Base64:

5p+s