Unicode Finder

"咁" U+5481(CJK UNIFIED IDEOGRAPH-5481)

U+5481
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5481

Programming

C
\u5481
JavaScript
\u5481
Java
\u5481
Json
\u5481
Python
\u5481
Perl
\x{5481}
PHP
\x{5481}
Ruby
\u{5481}
Rust
\u{5481}
Go
\u5481

Web

CSS
\005481
HtmlDecimal
咁
HtmlHexadecimal
咁
Url
%E5%92%81

Code

MD5
5208de1d00f6142f87c635523d06ea3b
Sha1
8fc61692870b45ac0df2fc79cfe283c27fd0336f
Base64
5ZKB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5481';
console.log(char);  // Output: 咁

Java:

char c = '\u5481';
System.out.println(c);  // Output: 咁

JSON:

{"text": "\u5481"}  // Value: 咁

Python:

char = '\u5481'
print(char)  # Output: 咁

Perl:

my $char = "\x{5481}";
print $char;  # Output: 咁

PHP:

$char = "\x{5481}";
echo $char;  // Output: 咁

Ruby:

char = "\u{5481}"
puts char  # Output: 咁

Rust:

let c = '\u{5481}';
println!("{}", c);  // Output: 咁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005481";  /* Display: 咁 */
}

HTML Decimal:

<p>HTML decimal: &#21633;</p>  <!-- Display: 咁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5481;</p>  <!-- Display: 咁 -->

URL Encoding:

// 咁 URL encoding
https://unicodefinder.com/search.php?query=%E5%92%81

Encodings

MD5:

5208de1d00f6142f87c635523d06ea3b

SHA1:

8fc61692870b45ac0df2fc79cfe283c27fd0336f

Base64:

5ZKB