Unicode Finder

"寄" U+5BC4(CJK UNIFIED IDEOGRAPH-5BC4)

U+5BC4
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5BC4

Programming

C
\u5BC4
JavaScript
\u5BC4
Java
\u5BC4
Json
\u5BC4
Python
\u5BC4
Perl
\x{5BC4}
PHP
\x{5BC4}
Ruby
\u{5BC4}
Rust
\u{5BC4}
Go
\u5BC4

Web

CSS
\005BC4
HtmlDecimal
寄
HtmlHexadecimal
寄
Url
%E5%AF%84

Code

MD5
a861160989019e85bce6d0e1175a6b0b
Sha1
a3fd86e86593de80601a8e6be07d197af5e2b282
Base64
5a+E

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BC4';
console.log(char);  // Output: 寄

Java:

char c = '\u5BC4';
System.out.println(c);  // Output: 寄

JSON:

{"text": "\u5BC4"}  // Value: 寄

Python:

char = '\u5BC4'
print(char)  # Output: 寄

Perl:

my $char = "\x{5BC4}";
print $char;  # Output: 寄

PHP:

$char = "\x{5BC4}";
echo $char;  // Output: 寄

Ruby:

char = "\u{5BC4}"
puts char  # Output: 寄

Rust:

let c = '\u{5BC4}';
println!("{}", c);  // Output: 寄

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BC4";  /* Display: 寄 */
}

HTML Decimal:

<p>HTML decimal: &#23492;</p>  <!-- Display: 寄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BC4;</p>  <!-- Display: 寄 -->

URL Encoding:

// 寄 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%84

Encodings

MD5:

a861160989019e85bce6d0e1175a6b0b

SHA1:

a3fd86e86593de80601a8e6be07d197af5e2b282

Base64:

5a+E