Unicode Finder

"愤" U+6124(CJK UNIFIED IDEOGRAPH-6124)

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

Programming

C
\u6124
JavaScript
\u6124
Java
\u6124
Json
\u6124
Python
\u6124
Perl
\x{6124}
PHP
\x{6124}
Ruby
\u{6124}
Rust
\u{6124}
Go
\u6124

Web

CSS
\006124
HtmlDecimal
愤
HtmlHexadecimal
愤
Url
%E6%84%A4

Code

MD5
b31197fa9597ac954d30e7c77300ef39
Sha1
f3b3b3f147a4477cc5ae1a6ae6ae9c4c4dc16770
Base64
5oSk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6124';
console.log(char);  // Output: 愤

Java:

char c = '\u6124';
System.out.println(c);  // Output: 愤

JSON:

{"text": "\u6124"}  // Value: 愤

Python:

char = '\u6124'
print(char)  # Output: 愤

Perl:

my $char = "\x{6124}";
print $char;  # Output: 愤

PHP:

$char = "\x{6124}";
echo $char;  // Output: 愤

Ruby:

char = "\u{6124}"
puts char  # Output: 愤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006124";  /* Display: 愤 */
}

HTML Decimal:

<p>HTML decimal: &#24868;</p>  <!-- Display: 愤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6124;</p>  <!-- Display: 愤 -->

URL Encoding:

// 愤 URL encoding
https://unicodefinder.com/search.php?query=%E6%84%A4

Encodings

MD5:

b31197fa9597ac954d30e7c77300ef39

SHA1:

f3b3b3f147a4477cc5ae1a6ae6ae9c4c4dc16770

Base64:

5oSk