Unicode Finder

"佒" U+4F52(CJK UNIFIED IDEOGRAPH-4F52)

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

Programming

C
\u4F52
JavaScript
\u4F52
Java
\u4F52
Json
\u4F52
Python
\u4F52
Perl
\x{4F52}
PHP
\x{4F52}
Ruby
\u{4F52}
Rust
\u{4F52}
Go
\u4F52

Web

CSS
\004F52
HtmlDecimal
佒
HtmlHexadecimal
佒
Url
%E4%BD%92

Code

MD5
713b7e7a8bffb85ce23882fa1ab1eb6a
Sha1
21d5f905ce6fd30181760c6e8d116ab8343a8e29
Base64
5L2S

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4F52';
console.log(char);  // Output: 佒

Java:

char c = '\u4F52';
System.out.println(c);  // Output: 佒

JSON:

{"text": "\u4F52"}  // Value: 佒

Python:

char = '\u4F52'
print(char)  # Output: 佒

Perl:

my $char = "\x{4F52}";
print $char;  # Output: 佒

PHP:

$char = "\x{4F52}";
echo $char;  // Output: 佒

Ruby:

char = "\u{4F52}"
puts char  # Output: 佒

Rust:

let c = '\u{4F52}';
println!("{}", c);  // Output: 佒

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F52";  /* Display: 佒 */
}

HTML Decimal:

<p>HTML decimal: &#20306;</p>  <!-- Display: 佒 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F52;</p>  <!-- Display: 佒 -->

URL Encoding:

// 佒 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%92

Encodings

MD5:

713b7e7a8bffb85ce23882fa1ab1eb6a

SHA1:

21d5f905ce6fd30181760c6e8d116ab8343a8e29

Base64:

5L2S