Difference between revisions of "Onna"

From TORI
Jump to: navigation, search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div style="float:right;margin:2px -14px 0px 4px;">
+
<div style="float:right;margin:-64px -14px 0px 4px;">
 
[[File:OnnaDeaw.png|300px]]<br>
 
[[File:OnnaDeaw.png|300px]]<br>
 
<center>Drawing of [[X2F25]], [[X5973]] or [[XF981]] <ref name="jisho">
 
<center>Drawing of [[X2F25]], [[X5973]] or [[XF981]] <ref name="jisho">
Line 34: Line 34:
 
</ref></center>
 
</ref></center>
 
</div>
 
</div>
  +
[[Onna]] ([[おんな]]) is sound that in [[Japanese]] may denote woman, Human female.
 
  +
Term [[Onna]] ([[おんな]]) or "onna" may refer to one of the following three [[Unicode]] characters:<br>
  +
12069 ([[X2F25]], [[&#X2F25;]]), [[KanjiRadical]] <br>
  +
22899 ([[X5973]], [[&#X5973;]]), [[KanjiLiberal]] <br>
  +
63873 ([[XF981]], [[&#XF981;]]), [[KanjiConfudal]]
  +
  +
Onna may refer also to the set of these 3 characters.
  +
  +
Often, these characters are pronounced as "Onna" and refer
  +
to a woman, Human female
 
<ref name="jisho">
 
<ref name="jisho">
 
https://jisho.org/search/%23kanji%20%E5%A5%B3
 
https://jisho.org/search/%23kanji%20%E5%A5%B3
Line 67: Line 76:
 
醜女 【しゅうじょ】 homely woman, plain-looking woman, female demon
 
醜女 【しゅうじょ】 homely woman, plain-looking woman, female demon
 
</ref>
 
</ref>
  +
<div style="float:right;margin:-20px -14px 0px -4px;">
  +
[[File:HumanFemale276.jpg|90px]]<br>
  +
</div>
 
==Unicode==
 
==Unicode==
 
At least three Unicode characters are related to sound [[Onna]]
 
At least three Unicode characters are related to sound [[Onna]]
and the picture shown in Figure 1.<br>
+
and the picture shown in Fig.1.<br>
 
These characters are<!--
 
These characters are<!--
 
[[X2F25]],
 
[[X2F25]],
Line 79: Line 91:
 
<big><big>[[&#XF981;]]</big></big> [[XF981]].
 
<big><big>[[&#XF981;]]</big></big> [[XF981]].
   
The [[PHP]] program below shows the [[Utf8]] encoding of each or these three characters:
+
The [[Utf8]] encoding can be revealed with the [[PHP]] program [[onna.t]].<br>
  +
It is copypasted below.
  +
<div style="margin:-14px -14px -14px -200px; background-color:#ffFFff">
  +
<div style="margin: 0px 0px 0px 28px; line-height:1.1em">
  +
 
<pre>
 
<pre>
 
<?php
 
<?php
  +
include "uni.t";
function unichr($dec) {
 
if ($dec < 128) {
 
$utf = chr($dec);
 
} else if ($dec < 2048) {
 
$utf = chr(192 + (($dec - ($dec % 64)) / 64));
 
$utf .= chr(128 + ($dec % 64));
 
} else {
 
$utf = chr(224 + (($dec - ($dec % 4096)) / 4096));
 
$utf .= chr(128 + ((($dec % 4096) - ($dec % 64)) / 64));
 
$utf .= chr(128 + ($dec % 64));
 
}
 
return $utf;
 
}
 
 
function mb_str_split($str) {
 
// split multibyte string in characters
 
// at all positions except the start: ^
 
// and the end: $
 
$pattern = '/(?<!^)(?!$)/u';
 
return preg_split($pattern,$str);
 
}
 
 
function uniord($a)
 
{
 
$M=strlen($a);
 
$p=ord($a[0]); if($M==1) return $p;
 
$p-=194; $p*=64; $p+=ord($a[1]); if($M==2) return $p;
 
$p-=2050; $p*=64; $p+=ord($a[2]); return $p;
 
}
 
 
 
$a=unichr(0x2f25);
 
$a=unichr(0x2f25);
 
$a.=unichr(0x5973);
 
$a.=unichr(0x5973);
Line 118: Line 105:
 
$N=strlen($a);
 
$N=strlen($a);
 
echo "The array has $N bytes; here is its splitting:\n";
 
echo "The array has $N bytes; here is its splitting:\n";
  +
for($n=0;$n<$N;$n++){ printf("%02x ",ord($a[$n]) ); }
 
for($n=0;$n<$N;$n++)
 
{
 
printf("%02x ",ord($a[$n]) );
 
}
 
 
echo "\n";
 
echo "\n";
   
 
$b = mb_str_split($a);
 
$b = mb_str_split($a);
 
 
var_dump($b);
 
var_dump($b);
 
$M=count($b);
 
$M=count($b);
  +
for($m=0;$m<$M;$m++) {
 
#mb_internal_encoding("UTF-8");
 
 
for($m=0;$m<$M;$m++)
 
{
 
 
printf("\n");
 
printf("\n");
 
$c=$b[$m];
 
$c=$b[$m];
Line 144: Line 122:
 
for($n=0;$n<$d;$n++) printf("%3d ",ord($c[$n]));
 
for($n=0;$n<$d;$n++) printf("%3d ",ord($c[$n]));
 
printf("in the decimal representation\n");
 
printf("in the decimal representation\n");
  +
}
}
 
 
?>
 
?>
 
</pre>
 
</pre>
  +
File [[uni.t]] also would be loaded for the execution; then, command
This program uses portable PHP functions [[unichr.t]], [[mb_str_split.t]] and [[uniord.t]]. The output is
 
  +
<pre>
 
  +
php onna.t
  +
  +
produces the output below:
  +
<poem>
 
⼥女女
 
⼥女女
 
The array has 9 bytes; here is its splitting:
 
The array has 9 bytes; here is its splitting:
Line 175: Line 157:
 
xEF xA6 x81 in the hexadecimal representation and
 
xEF xA6 x81 in the hexadecimal representation and
 
239 166 129 in the decimal representation
 
239 166 129 in the decimal representation
</pre>
+
</poem>
 
==Confusion==
 
 
Human, even a native Japanese speaker, looking at <big><big>[[&#X2F25;]], [[&#X5973;]],[[&#XF981;]] </big></big> cannot guess, which of them is [[X2F25]], which is [[X5973]] and which is [[XF981]].
 
 
Some software also confuse these characters; for example, the default Mediawiki replaces character [[XF981]] to character [[X5973]] without any warning. This may cause problems at automatic treat of data: in some cases the two objects are the same, and sometimes they are not. Similar confusion takes place at the careless use of term "[[equality]]" applied to triangles in [[geometry]].
 
 
In a text, that assumes any kind of citing, for example, copypasting to frame of a brouser or any search engine, the characters, corresponding to sound
 
[[onna]] should be specified as
 
[[X2F25]],
 
[[X5973]],
 
[[XF981]] rather than
 
[[&#X2F25;]],
 
[[&#X5973;]],
 
[[&#XF981;]]: the software confuse the last two characters.
 
 
For year 2021, this confusion is recognized and described
 
<ref>
 
https://util.unicode.org/UnicodeJsps/character.jsp?a=2F25 ⼥ 2F25 KANGXI RADICAL WOMAN Han Script id: allowed confuse: 女 , 女
 
</ref><ref>
 
https://util.unicode.org/UnicodeJsps/character.jsp?a=5973 女 5973 CJK UNIFIED IDEOGRAPH-5973 Han Script id: restricted confuse: 女 , ⼥
 
</ref><ref>
 
https://util.unicode.org/UnicodeJsps/character.jsp?a=F981 女 F981 CJK COMPATIBILITY IDEOGRAPH-F981 Han Script id: allowed confuse: 女 , ⼥
 
</ref>.
 
   
 
==Examples==
 
==Examples==
Line 231: Line 189:
 
Details ▸
 
Details ▸
 
..
 
..
</ref>
+
</ref>:
  +
  +
おんなざか 女坂
  +
mother; female parent​
  +
  +
おんなきょうだい 女兄弟
  +
the easier of two slopes​
  +
  +
女姉妹 【おんなきょうだい】
  +
sisters; female siblings​
  +
  +
おんなかぶき 女歌舞伎
  +
girls' kabuki​
  +
  +
==[[Censorship]]==
  +
<div style="float:right; margin:-54px 0px 0px 0px">
  +
[[File:NhXWNHchemscdIs-800x450-noPad.jpg|120px]]<br><small><center>
  +
Inappropriate</center></small><br>
  +
  +
[[File:SudaneseWomanFragment.jpg|90px|right]]<br><small><br><center>
  +
&nbsp;&nbsp;&nbsp;&nbsp;Appropriate</center></small>
  +
</div>
  +
  +
Objects and subjects, denoted with term [[onna]], often become targets or [[censorship]].
  +
  +
The religious [[motivated reasoning]] (see [[Female logic]]) about "moral" and "ethics" is used by [[vestism|vestists]] for justification of [[aggression]].
  +
  +
Various branches of [[vestism]] allow some parts of the human body to be exposed; the schematic degradation is shown in figure below.
  +
  +
[[File:Svetlana2.091.jpg|70px]]
  +
[[File:Svetlana4.101a.jpg|70px]]
  +
[[File:Svetlana6.110.jpg|70px]]
  +
[[File:Svetlana8.120a.jpg|72px]]
  +
[[File:Svetlana9.130b.jpg|72px]]
  +
  +
==Confusion==
  +
  +
Human, even a native Japanese speaker, looking at <big><big>[[&#X2F25;]], [[&#X5973;]],[[&#XF981;]] </big></big> cannot guess, which of them is [[X2F25]], which is [[X5973]] and which is [[XF981]].
  +
  +
Some software also confuse these characters; for example, the default Mediawiki replaces character [[XF981]] to character [[X5973]] without any warning. This may cause problems at automatic treat of data: in some cases the two objects are the same, and sometimes they are not. Similar confusion takes place at the careless use of term "[[equality]]" applied to triangles in [[geometry]].
  +
  +
In a text, that assumes any kind of citing, for example, copypasting to frame of a brouser or any search engine, the characters, corresponding to sound
  +
[[onna]] should be specified as
  +
[[X2F25]],
  +
[[X5973]],
  +
[[XF981]] rather than
  +
[[&#X2F25;]],
  +
[[&#X5973;]],
  +
[[&#XF981;]]: the software confuse the last two characters.
  +
  +
For year 2021, this confusion is recognized and described
  +
<ref>
  +
https://util.unicode.org/UnicodeJsps/character.jsp?a=2F25 ⼥ 2F25 KANGXI RADICAL WOMAN Han Script id: allowed confuse: 女 , 女
  +
</ref><ref>
  +
https://util.unicode.org/UnicodeJsps/character.jsp?a=5973 女 5973 CJK UNIFIED IDEOGRAPH-5973 Han Script id: restricted confuse: 女 , ⼥
  +
</ref><ref>
  +
https://util.unicode.org/UnicodeJsps/character.jsp?a=F981 女 F981 CJK COMPATIBILITY IDEOGRAPH-F981 Han Script id: allowed confuse: 女 , ⼥
  +
</ref>.
  +
  +
  +
</div></div>
   
 
==References==
 
==References==
 
<small>
 
<small>
<div style="margin:0px -14px 0px -200px;background-color:#FFffFF;line-height: 1.1;">
+
<div style="margin:-14px -14px -14px -200px;background-color:#FFffFF;">
  +
<div style="margin:0px -14px 0px 10px;line-height: 1.1;">
  +
  +
 
<references/>
 
<references/>
  +
</div>
 
  +
  +
</div></div>
 
</small>
 
</small>
   
 
==Keywords==
 
==Keywords==
<div style="margin:0px -14px 0px -170px;background-color:#FFffFF;">
+
<div style="margin:-14px -14px 0px -170px;background-color:#FFffFF;">
  +
  +
 
[[Chinese]],
 
[[Chinese]],
 
[[Confusion]],
 
[[Confusion]],
 
[[Female]],
 
[[Female]],
 
[[Japanese]],
 
[[Japanese]],
  +
[[Kanji]],
  +
[[KanjiConfudal]],
  +
[[KanjiLiberal]],
  +
[[KanjiRadical]],
 
[[Onna]],
 
[[Onna]],
  +
[[SomeU]],
 
[[Utf8]],
 
[[Utf8]],
 
[[Utf8table]],
 
[[Utf8table]],
Line 256: Line 286:
 
[[&#12069;]],
 
[[&#12069;]],
 
[[&#63873;]]
 
[[&#63873;]]
  +
</div>
 
 
[[Category:Chinese]]
 
[[Category:Chinese]]
 
[[Category:Confusion]]
 
[[Category:Confusion]]
Line 262: Line 292:
 
[[Category:Onna]]
 
[[Category:Onna]]
 
[[Category:Japanese]]
 
[[Category:Japanese]]
  +
[[Category:Kanji]]
  +
[[Category:KanjiConfudal]]
  +
[[Category:KanjiLiberal]]
  +
[[Category:KanjiRadical]]
 
[[Category:Utf8]]
 
[[Category:Utf8]]
 
[[Category:Woman]]
 
[[Category:Woman]]
 
[[Category:XF981]]
 
[[Category:XF981]]
  +
 
</div>
 
</div>

Latest revision as of 07:49, 22 June 2021

OnnaDeaw.png

Drawing of X2F25, X5973 or XF981 [1]

Term Onna (おんな) or "onna" may refer to one of the following three Unicode characters:
12069 (X2F25, ), KanjiRadical
22899 (X5973, ), KanjiLiberal
63873 (XF981, ), KanjiConfudal

Onna may refer also to the set of these 3 characters.

Often, these characters are pronounced as "Onna" and refer to a woman, Human female [1]

HumanFemale276.jpg

Unicode

At least three Unicode characters are related to sound Onna and the picture shown in Fig.1.
These characters are X2F25, X5973, XF981.

The Utf8 encoding can be revealed with the PHP program onna.t.
It is copypasted below.

<?php 
include "uni.t";
$a=unichr(0x2f25);
$a.=unichr(0x5973);
$a.=unichr(0xF981);
echo "$a\n";
$N=strlen($a);
echo "The array has $N bytes; here is its splitting:\n";
for($n=0;$n<$N;$n++){ printf("%02x ",ord($a[$n]) ); }
echo "\n";

$b = mb_str_split($a);
var_dump($b);
$M=count($b);
for($m=0;$m<$M;$m++) {
printf("\n");
$c=$b[$m];
$u=uniord($c);
printf("Unicode character number %05d id est, x%04X\n",$u,$u);
$d=strlen($c);
echo "Picture: $c uses $d bytes. These bytes are:\n";
for($n=0;$n<$d;$n++) printf("x%2X ",ord($c[$n]));
printf("in the hexadecimal representation and\n");
for($n=0;$n<$d;$n++) printf("%3d ",ord($c[$n]));
printf("in the decimal representation\n");
                      }
?>

File uni.t also would be loaded for the execution; then, command

php onna.t

produces the output below:

⼥女女
The array has 9 bytes; here is its splitting:
e2 bc a5 e5 a5 b3 ef a6 81
array(3) {
  [0]=>
  string(3) "⼥"
  [1]=>
  string(3) "女"
  [2]=>
  string(3) "女"
}

Unicode character number 12069 id est, x2F25
Picture: ⼥ uses 3 bytes. These bytes are:
xE2 xBC xA5 in the hexadecimal representation and
226 188 165 in the decimal representation

Unicode character number 22899 id est, x5973
Picture: 女 uses 3 bytes. These bytes are:
xE5 xA5 xB3 in the hexadecimal representation and
229 165 179 in the decimal representation

Unicode character number 63873 id est, xF981
Picture: 女 uses 3 bytes. These bytes are:
xEF xA6 x81 in the hexadecimal representation and
239 166 129 in the decimal representation

Examples

Dictionary Jisho suggest examples with sound onna [2]:

おんなざか 女坂 mother; female parent​

おんなきょうだい 女兄弟 the easier of two slopes​

女姉妹 【おんなきょうだい】 sisters; female siblings​

おんなかぶき 女歌舞伎 girls' kabuki​

Censorship

NhXWNHchemscdIs-800x450-noPad.jpg
Inappropriate

SudaneseWomanFragment.jpg


    Appropriate

Objects and subjects, denoted with term onna, often become targets or censorship.

The religious motivated reasoning (see Female logic) about "moral" and "ethics" is used by vestists for justification of aggression.

Various branches of vestism allow some parts of the human body to be exposed; the schematic degradation is shown in figure below.

Svetlana2.091.jpg Svetlana4.101a.jpg Svetlana6.110.jpg Svetlana8.120a.jpg Svetlana9.130b.jpg

Confusion

Human, even a native Japanese speaker, looking at , , cannot guess, which of them is X2F25, which is X5973 and which is XF981.

Some software also confuse these characters; for example, the default Mediawiki replaces character XF981 to character X5973 without any warning. This may cause problems at automatic treat of data: in some cases the two objects are the same, and sometimes they are not. Similar confusion takes place at the careless use of term "equality" applied to triangles in geometry.

In a text, that assumes any kind of citing, for example, copypasting to frame of a brouser or any search engine, the characters, corresponding to sound onna should be specified as X2F25, X5973, XF981 rather than , , : the software confuse the last two characters.

For year 2021, this confusion is recognized and described [3][4][5].


References


  1. 1.0 1.1 https://jisho.org/search/%23kanji%20%E5%A5%B3 https://jisho.org/search/%23kanji_女 woman, female Kun: おんな、 め On: ジョ、 ニョ、 ニョウ Jōyō kanji, taught in grade 1 JLPT level N5 151 of 2500 most used kanji in newspapers On reading compounds 女 【ジョ】 woman, girl, daughter, Chinese "Girl" constellation (one of the 28 mansions) 女王 【ジョオウ】 queen, female champion 処女 【ショジョ】 virgin, maiden 一女 【イチジョ】 one daughter, eldest daughter, first-born daughter 女王 【ジョオウ】 queen, female champion 女房 【ニョウボウ】 wife (esp. one's own wife), court lady, female court attache, woman who served at the imperial palace, woman (esp. as a love interest) 老若男女 【ロウニャクナンニョ】 men and women of all ages 天女 【テンニョ】 heavenly nymph, celestial maiden, beautiful and kind woman 女房 【ニョウボウ】 wife (esp. one's own wife), court lady, female court attache, woman who served at the imperial palace, woman (esp. as a love interest) 女官 【ジョカン】 court lady, lady-in-waiting Kun reading compounds 女 【おんな】 female, woman, female sex, female lover, girlfriend, mistress, (someone's) woman 女形 【おんながた】 onnagata, male actor in female kabuki roles, female partner (in a relationship) 醜女 【しゅうじょ】 homely woman, plain-looking woman, female demon 囲い女 【かこいおんな】 mistress 雌 【め】 female, smaller (of the two), weaker, woman, wife 女神 【めがみ】 goddess, female deity 早乙女 【さおとめ】 young female rice planter, young girl 醜女 【しゅうじょ】 homely woman, plain-looking woman, female demon
  2. https://jisho.org/search/%E5%A5%B3%20%E3%81%8A%E3%82%93%E3%81%AA%20%23words?page=2 女 おんな #words .. Words — 107 found おんなおや 女親 Links Noun 1. mother; female parent​ Details ▸ おんなざか 女坂 Links Noun 1. the easier of two slopes​ Details ▸ おんなきょうだい 女兄弟 Links Noun 1. sisters; female siblings​ Other forms 女姉妹 【おんなきょうだい】 Details ▸ おんなかぶき 女歌舞伎 Links Noun 1. girls' kabuki​ Details ▸ ..
  3. https://util.unicode.org/UnicodeJsps/character.jsp?a=2F25 ⼥ 2F25 KANGXI RADICAL WOMAN Han Script id: allowed confuse: 女 , 女
  4. https://util.unicode.org/UnicodeJsps/character.jsp?a=5973 女 5973 CJK UNIFIED IDEOGRAPH-5973 Han Script id: restricted confuse: 女 , ⼥
  5. https://util.unicode.org/UnicodeJsps/character.jsp?a=F981 女 F981 CJK COMPATIBILITY IDEOGRAPH-F981 Han Script id: allowed confuse: 女 , ⼥


Keywords


Chinese, Confusion, Female, Japanese, Kanji, KanjiConfudal, KanjiLiberal, KanjiRadical, Onna, SomeU, Utf8, Utf8table, UtfH, Woman, X2F25, X5973, XF981, ,