Unicode Finder

"簳" U+7C33(CJK UNIFIED IDEOGRAPH-7C33)

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

Programming

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

Web

CSS
\007C33
HtmlDecimal
簳
HtmlHexadecimal
簳
Url
%E7%B0%B3

Code

MD5
10975b2bbc34563b737ed93d747fb9ef
Sha1
33a82013c4005f7935f92f6e33783b2ab7cfc694
Base64
57Cz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C33';
console.log(char);  // Output: 簳

Java:

char c = '\u7C33';
System.out.println(c);  // Output: 簳

JSON:

{"text": "\u7C33"}  // Value: 簳

Python:

char = '\u7C33'
print(char)  # Output: 簳

Perl:

my $char = "\x{7C33}";
print $char;  # Output: 簳

PHP:

$char = "\x{7C33}";
echo $char;  // Output: 簳

Ruby:

char = "\u{7C33}"
puts char  # Output: 簳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31795;</p>  <!-- Display: 簳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C33;</p>  <!-- Display: 簳 -->

URL Encoding:

// 簳 URL encoding
https://unicodefinder.com/search.php?query=%E7%B0%B3

Encodings

MD5:

10975b2bbc34563b737ed93d747fb9ef

SHA1:

33a82013c4005f7935f92f6e33783b2ab7cfc694

Base64:

57Cz