Unicode Finder

"坏" U+574F(CJK UNIFIED IDEOGRAPH-574F)

U+574F
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-574F

Programming

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

Web

CSS
\00574F
HtmlDecimal
坏
HtmlHexadecimal
坏
Url
%E5%9D%8F

Code

MD5
88b5b7181bd39bd0dcf6a8ce084ee4c3
Sha1
e831b96e10347abc6f66b8571025968604d600b4
Base64
5Z2P

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u574F';
console.log(char);  // Output: 坏

Java:

char c = '\u574F';
System.out.println(c);  // Output: 坏

JSON:

{"text": "\u574F"}  // Value: 坏

Python:

char = '\u574F'
print(char)  # Output: 坏

Perl:

my $char = "\x{574F}";
print $char;  # Output: 坏

PHP:

$char = "\x{574F}";
echo $char;  // Output: 坏

Ruby:

char = "\u{574F}"
puts char  # Output: 坏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22351;</p>  <!-- Display: 坏 -->

HTML Hexadecimal:

<p>HTML hex: &#x574F;</p>  <!-- Display: 坏 -->

URL Encoding:

// 坏 URL encoding
https://unicodefinder.com/search.php?query=%E5%9D%8F

Encodings

MD5:

88b5b7181bd39bd0dcf6a8ce084ee4c3

SHA1:

e831b96e10347abc6f66b8571025968604d600b4

Base64:

5Z2P