Unicode Finder

"咒" U+5492(CJK UNIFIED IDEOGRAPH-5492)

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

Programming

C
\u5492
JavaScript
\u5492
Java
\u5492
Json
\u5492
Python
\u5492
Perl
\x{5492}
PHP
\x{5492}
Ruby
\u{5492}
Rust
\u{5492}
Go
\u5492

Web

CSS
\005492
HtmlDecimal
咒
HtmlHexadecimal
咒
Url
%E5%92%92

Code

MD5
dd5764c7ab0fe3be9a08f73ff90a8eb3
Sha1
df20ad013e08c2c0f58f68609c9a3de074d9b511
Base64
5ZKS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5492';
console.log(char);  // Output: 咒

Java:

char c = '\u5492';
System.out.println(c);  // Output: 咒

JSON:

{"text": "\u5492"}  // Value: 咒

Python:

char = '\u5492'
print(char)  # Output: 咒

Perl:

my $char = "\x{5492}";
print $char;  # Output: 咒

PHP:

$char = "\x{5492}";
echo $char;  // Output: 咒

Ruby:

char = "\u{5492}"
puts char  # Output: 咒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005492";  /* Display: 咒 */
}

HTML Decimal:

<p>HTML decimal: &#21650;</p>  <!-- Display: 咒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5492;</p>  <!-- Display: 咒 -->

URL Encoding:

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

Encodings

MD5:

dd5764c7ab0fe3be9a08f73ff90a8eb3

SHA1:

df20ad013e08c2c0f58f68609c9a3de074d9b511

Base64:

5ZKS