Unicode Finder

"簸" U+7C38(CJK UNIFIED IDEOGRAPH-7C38)

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

Programming

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

Web

CSS
\007C38
HtmlDecimal
簸
HtmlHexadecimal
簸
Url
%E7%B0%B8

Code

MD5
6f1d9867996d2afe91ba59349e9ececb
Sha1
9ff259a78d847e4257d03d78eeb31c540c359c1a
Base64
57C4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C38';
console.log(char);  // Output: 簸

Java:

char c = '\u7C38';
System.out.println(c);  // Output: 簸

JSON:

{"text": "\u7C38"}  // Value: 簸

Python:

char = '\u7C38'
print(char)  # Output: 簸

Perl:

my $char = "\x{7C38}";
print $char;  # Output: 簸

PHP:

$char = "\x{7C38}";
echo $char;  // Output: 簸

Ruby:

char = "\u{7C38}"
puts char  # Output: 簸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31800;</p>  <!-- Display: 簸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C38;</p>  <!-- Display: 簸 -->

URL Encoding:

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

Encodings

MD5:

6f1d9867996d2afe91ba59349e9ececb

SHA1:

9ff259a78d847e4257d03d78eeb31c540c359c1a

Base64:

57C4