Unicode Finder

"咏" U+548F(CJK UNIFIED IDEOGRAPH-548F)

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

Programming

C
\u548F
JavaScript
\u548F
Java
\u548F
Json
\u548F
Python
\u548F
Perl
\x{548F}
PHP
\x{548F}
Ruby
\u{548F}
Rust
\u{548F}
Go
\u548F

Web

CSS
\00548F
HtmlDecimal
咏
HtmlHexadecimal
咏
Url
%E5%92%8F

Code

MD5
7a89143d54155094a191b9c01c5d1e52
Sha1
4f44c10920df7f508cfad34d0460490ca37730f3
Base64
5ZKP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u548F';
console.log(char);  // Output: 咏

Java:

char c = '\u548F';
System.out.println(c);  // Output: 咏

JSON:

{"text": "\u548F"}  // Value: 咏

Python:

char = '\u548F'
print(char)  # Output: 咏

Perl:

my $char = "\x{548F}";
print $char;  # Output: 咏

PHP:

$char = "\x{548F}";
echo $char;  // Output: 咏

Ruby:

char = "\u{548F}"
puts char  # Output: 咏

Rust:

let c = '\u{548F}';
println!("{}", c);  // Output: 咏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00548F";  /* Display: 咏 */
}

HTML Decimal:

<p>HTML decimal: &#21647;</p>  <!-- Display: 咏 -->

HTML Hexadecimal:

<p>HTML hex: &#x548F;</p>  <!-- Display: 咏 -->

URL Encoding:

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

Encodings

MD5:

7a89143d54155094a191b9c01c5d1e52

SHA1:

4f44c10920df7f508cfad34d0460490ca37730f3

Base64:

5ZKP