Unicode Finder

"噱" U+5671(CJK UNIFIED IDEOGRAPH-5671)

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

Programming

C
\u5671
JavaScript
\u5671
Java
\u5671
Json
\u5671
Python
\u5671
Perl
\x{5671}
PHP
\x{5671}
Ruby
\u{5671}
Rust
\u{5671}
Go
\u5671

Web

CSS
\005671
HtmlDecimal
噱
HtmlHexadecimal
噱
Url
%E5%99%B1

Code

MD5
0bf995bdf42b099086365a27c23dfa42
Sha1
391fc8a730df6522cf1623b6aa79f661b7efaceb
Base64
5Zmx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5671';
console.log(char);  // Output: 噱

Java:

char c = '\u5671';
System.out.println(c);  // Output: 噱

JSON:

{"text": "\u5671"}  // Value: 噱

Python:

char = '\u5671'
print(char)  # Output: 噱

Perl:

my $char = "\x{5671}";
print $char;  # Output: 噱

PHP:

$char = "\x{5671}";
echo $char;  // Output: 噱

Ruby:

char = "\u{5671}"
puts char  # Output: 噱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005671";  /* Display: 噱 */
}

HTML Decimal:

<p>HTML decimal: &#22129;</p>  <!-- Display: 噱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5671;</p>  <!-- Display: 噱 -->

URL Encoding:

// 噱 URL encoding
https://unicodefinder.com/search.php?query=%E5%99%B1

Encodings

MD5:

0bf995bdf42b099086365a27c23dfa42

SHA1:

391fc8a730df6522cf1623b6aa79f661b7efaceb

Base64:

5Zmx