Unicode Finder

"唤" U+5524(CJK UNIFIED IDEOGRAPH-5524)

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

Programming

C
\u5524
JavaScript
\u5524
Java
\u5524
Json
\u5524
Python
\u5524
Perl
\x{5524}
PHP
\x{5524}
Ruby
\u{5524}
Rust
\u{5524}
Go
\u5524

Web

CSS
\005524
HtmlDecimal
唤
HtmlHexadecimal
唤
Url
%E5%94%A4

Code

MD5
2b8ecc72a9133e688a68f30eafb94be0
Sha1
7c6bed99a005d0263dd969f5a89c15fb64464aeb
Base64
5ZSk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5524';
console.log(char);  // Output: 唤

Java:

char c = '\u5524';
System.out.println(c);  // Output: 唤

JSON:

{"text": "\u5524"}  // Value: 唤

Python:

char = '\u5524'
print(char)  # Output: 唤

Perl:

my $char = "\x{5524}";
print $char;  # Output: 唤

PHP:

$char = "\x{5524}";
echo $char;  // Output: 唤

Ruby:

char = "\u{5524}"
puts char  # Output: 唤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005524";  /* Display: 唤 */
}

HTML Decimal:

<p>HTML decimal: &#21796;</p>  <!-- Display: 唤 -->

HTML Hexadecimal:

<p>HTML hex: &#x5524;</p>  <!-- Display: 唤 -->

URL Encoding:

// 唤 URL encoding
https://unicodefinder.com/search.php?query=%E5%94%A4

Encodings

MD5:

2b8ecc72a9133e688a68f30eafb94be0

SHA1:

7c6bed99a005d0263dd969f5a89c15fb64464aeb

Base64:

5ZSk