Unicode Finder

"籉" U+7C49(CJK UNIFIED IDEOGRAPH-7C49)

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

Programming

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

Web

CSS
\007C49
HtmlDecimal
籉
HtmlHexadecimal
籉
Url
%E7%B1%89

Code

MD5
e71146946b4fbdfc1d25be1d45206cca
Sha1
db6d903705d6a19d24ac9c3372c3d6462ed3da6b
Base64
57GJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C49';
console.log(char);  // Output: 籉

Java:

char c = '\u7C49';
System.out.println(c);  // Output: 籉

JSON:

{"text": "\u7C49"}  // Value: 籉

Python:

char = '\u7C49'
print(char)  # Output: 籉

Perl:

my $char = "\x{7C49}";
print $char;  # Output: 籉

PHP:

$char = "\x{7C49}";
echo $char;  // Output: 籉

Ruby:

char = "\u{7C49}"
puts char  # Output: 籉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31817;</p>  <!-- Display: 籉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C49;</p>  <!-- Display: 籉 -->

URL Encoding:

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

Encodings

MD5:

e71146946b4fbdfc1d25be1d45206cca

SHA1:

db6d903705d6a19d24ac9c3372c3d6462ed3da6b

Base64:

57GJ