Unicode Finder

"籐" U+7C50(CJK UNIFIED IDEOGRAPH-7C50)

U+7C50
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7C50

Programming

C
\u7C50
JavaScript
\u7C50
Java
\u7C50
Json
\u7C50
Python
\u7C50
Perl
\x{7C50}
PHP
\x{7C50}
Ruby
\u{7C50}
Rust
\u{7C50}
Go
\u7C50

Web

CSS
\007C50
HtmlDecimal
籐
HtmlHexadecimal
籐
Url
%E7%B1%90

Code

MD5
0a4e8e591bda7fc5205235768e91956f
Sha1
2f4a8eb864b4e1379fd6fe0a2b5c2f4f7e0b66ca
Base64
57GQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C50';
console.log(char);  // Output: 籐

Java:

char c = '\u7C50';
System.out.println(c);  // Output: 籐

JSON:

{"text": "\u7C50"}  // Value: 籐

Python:

char = '\u7C50'
print(char)  # Output: 籐

Perl:

my $char = "\x{7C50}";
print $char;  # Output: 籐

PHP:

$char = "\x{7C50}";
echo $char;  // Output: 籐

Ruby:

char = "\u{7C50}"
puts char  # Output: 籐

Rust:

let c = '\u{7C50}';
println!("{}", c);  // Output: 籐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C50";  /* Display: 籐 */
}

HTML Decimal:

<p>HTML decimal: &#31824;</p>  <!-- Display: 籐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C50;</p>  <!-- Display: 籐 -->

URL Encoding:

// 籐 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%90

Encodings

MD5:

0a4e8e591bda7fc5205235768e91956f

SHA1:

2f4a8eb864b4e1379fd6fe0a2b5c2f4f7e0b66ca

Base64:

57GQ