Unicode Finder

"柕" U+67D5(CJK UNIFIED IDEOGRAPH-67D5)

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

Programming

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

Web

CSS
\0067D5
HtmlDecimal
柕
HtmlHexadecimal
柕
Url
%E6%9F%95

Code

MD5
dec8e8cfc91be726fc9f4e30179d7171
Sha1
29e61e11eb038b123b95b6964e8a3e8fddc32284
Base64
5p+V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u67D5';
console.log(char);  // Output: 柕

Java:

char c = '\u67D5';
System.out.println(c);  // Output: 柕

JSON:

{"text": "\u67D5"}  // Value: 柕

Python:

char = '\u67D5'
print(char)  # Output: 柕

Perl:

my $char = "\x{67D5}";
print $char;  # Output: 柕

PHP:

$char = "\x{67D5}";
echo $char;  // Output: 柕

Ruby:

char = "\u{67D5}"
puts char  # Output: 柕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26581;</p>  <!-- Display: 柕 -->

HTML Hexadecimal:

<p>HTML hex: &#x67D5;</p>  <!-- Display: 柕 -->

URL Encoding:

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

Encodings

MD5:

dec8e8cfc91be726fc9f4e30179d7171

SHA1:

29e61e11eb038b123b95b6964e8a3e8fddc32284

Base64:

5p+V